-
Parent Table
A table which consist of atleast one primary or Unique key is called as Parent Table.
True / False (Justify) -
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?
-
Oracle Stand Alone Procedure
How does a stand alone procedures differ from that of other procedures?
-
-
-
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?
-
-
Wrap
What is Wrap?
-
PGA_AGGREGRATE_TARGET Parameter
What is PGA_AGGREGRATE_TARGET parameter?
-
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. -
Query Performance
Which one gives better performance,
co-related subquery or inline views? Why? -
-
Different values for SYSTEM.MESSAGE_LEVEL
What are the different values for :SYSTEM.MESSAGE_LEVEL and its impact?
-
Purpose of Redo Log Files
What is the purpose of redo log files?
-
Oracle Database Size
How we can increae Oracle Database Size?
-
Oracle Instance
What is an Oracle Instance? Where it is present and How does it perform?
-
Row Chaining
How to detect and prevent row chaining?
-
-
-
Oracle Interview Questions
Sub Category
Questions
Answers
Last Updated
Ans