-
-
-
What are the cursor attributes used in PL/SQL ?
%ISOPEN - to check whether cursor is open or not % ROWCOUNT - number of rows fetched/updated/deleted. % FOUND - to check whether cursor has fetched any row. True if rows are fetched. % NOT FOUND - to check whether cursor has fetched any row. True if no rows are featched.These attributes are proceeded with SQL for Implicit Cursors...
-
Function return more than one value
Hi,My questions is " Can function return more than one value".I have gone through the all answers relevant to my question was been posted earlier. But all answers are confusing me.Few people said directly that function can't return more than one value and few are telling that function can return more that one value using OUT parameter or ref cursor.My understanding is if out can't use as a parameter...
-
SQL Query Tuning Considerations
While tuning SQL query what should be taken into consideration?
-
-
-
RollForward
What is the rollforward in pl/sql
-
Return statement and OUT Parameters
What are Return Statement and OUT Parameter in PLSQL Function?
-
-
-
What is an Exception ? What are types of Exception ?
Exception is the error handling part of PL/SQL block. The types are Predefined and user defined. Some of Predefined exceptions are. CURSOR_ALREADY_OPEN DUP_VAL_ON_INDEX NO_DATA_FOUND TOO_MANY_ROWS INVALID_CURSOR ...
-
Procedure Parameters
What is call by value and call by reference in parameters (IN, OUT, INOUT)?
-
-
-
Auto Commit
When we insert new values into the table using loops. Is it going to be auto commit or do we need to commit manually?
-
-
Debug PL SQL
How can we generate debugging output from PL/SQL?
-
About dbms_output.put_line( ) package
What is the maximum size of the message that we can give in dbms_output.putline();
-
Passing the parameter to TOP keyword
Hi All,I want create a stored procedure by passing the parameter to top nth recordfor Excreate proc test1(@x integer)asbeginselect top @x empid from emp order by empid descendwhen iam executing iam getting error .Please let me know any other alternative way
PL/SQL Interview Questions
Ans