-
What is difference between a PROCEDURE & FUNCTION ?
A FUNCTION is always returns a value using the return statement. A PROCEDURE may return one or more values through parameters or may not return at all.
-
-
What is Simple Cursor? and What is Parametrized cursor?
Explain what is Simple Cursor and What is Parameterized Cursor? And Difference between both??
-
-
-
What are the components of a PL/SQL block ?
A set of related declarations and procedural statements is called block.
-
-
Delete duplicate records without using sub query?
Delete duplicate records without using sub query? Is That possible
-
-
Dual Table
Is Dual Table updatable? If we update, will it impact the health of the database?
-
-
Adventages of package over standalone procedure
What are the advantages of packages over standalone procedure ?
-
-
-
Bulk binding
What are the advantages of bulk binding in PL/SQL?
-
-
-
What is difference between % ROWTYPE and TYPE RECORD ?
% ROWTYPE is to be used whenever query returns a entire row of a table or view. TYPE rec RECORD is to be used whenever query returns columns of differenttable or views and variables. E.g. TYPE r_emp is RECORD (eno emp.empno% type,ename emp ename %type); e_rec emp% ROWTYPE cursor...
-
-
PL/SQL Interview Questions
Ans