-
Row Chaining
How to detect and prevent row chaining?
-
Oracle Instance
What is an Oracle Instance? Where it is present and How does it perform?
-
Oracle Database Size
How we can increae Oracle Database Size?
-
Purpose of Redo Log Files
What is the purpose of redo log files?
-
Different values for SYSTEM.MESSAGE_LEVEL
What are the different values for :SYSTEM.MESSAGE_LEVEL and its impact?
-
-
Query Performance
Which one gives better performance,
co-related subquery or inline views? Why? -
Multi Row Sub-Queries
Query 1.
SELECT sal FROM emp e WHERE sal < any (SELECT sal FROM empWHERE empno=e.mgr)
(o/p:11 row)
Query 2.
SELECT SAL FROM emp e WHERE sal < any (SELECT sal FROM empWHERE mgr=e.empno)
(o/p:1 row)
What is the difference between the above 2 queries. -
PGA_AGGREGRATE_TARGET Parameter
What is PGA_AGGREGRATE_TARGET parameter?
-
Wrap
What is Wrap?
-
-
Offload Query Processing
Why we need both the SID and the Serial no's to kill the session?How to offload query processing from the Production DB to Standby DBWhy some times startup /as sysdba starts only the instance (Why not opening the DB)Explain the Functionality of sqlplus /nolog?
-
-
-
Oracle Stand Alone Procedure
How does a stand alone procedures differ from that of other procedures?
-
Identify DML Error
MERGE INTO SAS F USING (SELECT PRODID, PRODID+10 F, DESCRIP FROM PRODUCT) L ON (F.PRODID=L.PRODID) WHEN MATCHED THEN UPDATE SET F.PRODID=L.F WHEN NOT MATCHED THEN INSERT VALUES (L.F, L.DESCRIP)Why does the above give error?
-
Parent Table
A table which consist of atleast one primary or Unique key is called as Parent Table.
True / False (Justify) -
Control File Restore
How to restore the control file by using RMAN backup?
-
Start Up Information
In which file we can see start up information?
-
TableSpace Space
How to find out how much space a tablespace has remaining?
Oracle Interview Questions
Sub Category
Questions
Answers
Last Updated
Ans