-
-
-
Find null value in a table
What are all the different ways available to find the null value in a table
-
-
Infinite Loop
How will you stop an infinite loop without closing the program?
-
DeCode Performance
Performance wise which is a better option if-else construct or a decode? Why
-
How to find error line of a package at run time
How can the error line can be identified for a package at run time ?
-
Purpose of Ref cursor and OUT parametr in PLSQL Function?
What is the purpose of Ref Cursor and OUT Parameter in PLSQL Function? Give Examples for each?
-
Paging In Oracle
Hi All,I have requirement of sending the records based on the input received from web.I have a ref_cursor returning 30 rows..Here I am supposed to do paging on the set of records present in the above ref cursor.If web gives 1 , then I should send first 10 records in the ref cursor..If gives 2 , then I should send next 10 records in the ref cursor..similarly�..I will get some sort of indicator from...
-
-
Pipe Function and Mutating Trigger
1) Why we use pl/sql array rather than cursor?2) In which condition we use function overloading? 3) What is pipe function?4) What is the mutating trigger? What should be the condition?
-
Explicit cursor and Select into statement
What is the difference between an explicit cursor and select into statement?
-
What is PL/SQL table ?
Objects of type TABLE are called "PL/SQL tables", which are modeled as (but not the same as) database tables, PL/SQL tables use a primary PL/SQL tables can have one column and a primary key. Cursors
-
-
What is the output of the following pl/sql block ?declare v_empno emp.empno%type;begin select empno into v_empno from emp where empno = 10;exception when others then dbms_output.put_line ( 'no data found'); when no_data_found then dbms_output.put_line ( 'ther is no data found ');end;
when others then *ERROR at line 6:ORA-06550: line 6, column 2:PLS-00370: OTHERS handler must be last among the exception handlers of a blockORA-06550: line 0, column 0:PL/SQL: Compilation unit analysis terminated
-
SQL Statments in Packages
If you have to call same piece of code at many places in a package, How do you achieve this without calling the function many times?
-
-
Recreating and Rebuilding Indexes
What is recreating and rebuiding of indexes?
-
PL/SQL Synonym
What are the advantage of Synonym in PL/SQL
-
Package Without Body
What is the use of a package without body?
PL/SQL Interview Questions
Ans