-
What is an Index ? How it is implemented in Oracle Database ?
An index is a database structure used by the server to have direct access of a row in a table. An index is automatically created when a unique of primary key constraint clause is specified in create table comman (Ver 7.0)
-
-
How to DROP an Oracle Database?
You can do it at the OS level by deleting all the files of the database. The files to be deleted can be found using: 1) select * from dba_data_files; 2) select * from v$logfile; 3) select * from v$controlfile; 4) archive log list 5) initSID.ora 6) In addition you can clean the UDUMP, BDUMP, scripts etc Clean up the listener.ora and the tnsnames.ora. make sure that the oratab entry is also removed.
-
How can be determine the size of the database?
You can query dba_data_files and dba_temp_files
-
-
-
-
-
-
-
Changed Performance
When yesterday developer gives the following command: select count(*) from [table name]it gives the output within minutes, today the same command takes hours? What will you check?
-
Alert log files
What are four errors found in an alert (error) log that can ruin a DBA's appetite and how can you avoid them?
-
DB Server Performance Bottlenecks
What are four performance bottlenecks that can occur in a database server and How are they detected?
-
Why we use materialized View? or when do i go for an Materialized View
Please Give any scenario (Or) example of its very help full?
-
Temp Table Space
Temp table running out of space, What will you do?
-
-
-
-
-
Oracle DBA Interview Questions
Ans