-
PL/SQL Autonomous Transaction
If in PL/SQL Autonomous transaction, you get error then how will you role back the main transaction?
-
-
-
DUAL table in Oracle
Can you explain What is DUAL table in Oracle?
-
-
-
-
-
-
-
What do you mean by Conceptual?
How its helps? Why we go for Conceptual Model?
-
Large SQL query performance check
You have a very large query say of 2000 lines. How would you check if the indexes are being used or not. Would you read all the lines of explain plan in plan table to get it? If yes, will it be feasible? Do you have any other method of checking this?
-
Compute Sum
In order to 'Compute Sum' clause in the SQL reports which of the following is mandatory1) Break on 2) Order by 3) Set page size 4) Set feedback
-
Redo Log Files
In which format redo log files stores the changes ?
-
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. -
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) -
System TableSpace and Default TableSpace
Explain what are system tablespace and default tablespace? How do they differ from one another?
-
Oracle Stand Alone Procedure
How does a stand alone procedures differ from that of other procedures?
-
TableSpace Space
How to find out how much space a tablespace has remaining?
Oracle Interview Questions
Sub Category
Questions
Answers
Last Updated
Ans