-
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
-
-
What is a Schema ?
The set of objects owned by user account is called the schema.
-
-
-
-
Tablespace Quota
A user has connect and resource privileges allocated by the DBA. He is been allocated quota on three tablespaces by the DBA - Default Tablespace Quota 500 M - Tablespace 1 Quota 100 M - Tablespace 2 Quota 200 M Now the user tries to make a table which uses 300 M in tablespace 2. Will he be successful?
-
DML operations on standby database
Can you perform DML operations when the standby database is in read only in Standby Database?
-
Dump Destination
What is dump destination? What are bdump, cdump and udump? Explain in detail.
-
PCT Free
What is PCT Free and PCT Used?What is PCT increase parameter in segment?What is growth factor?
-
Locks in Oracle
A user issues the below query,
1. Select * from table1 lock table
At the same time DBA is trying to modify this table table1 using alter command, will he able to do that or not? -
-
-
-
-
-
Oracle DBA Interview Questions
Ans