What is set serveroutput on?
What are local and global Indexes and where they are useful.
what is blob? : Sql dba
What are the two parts of a procedure ?
How to Execute a Package in PL/SQL.?
How many parts of a pl sql block are optional?
What are the blocks in stored procedure?
Explain the methods used to protect source code of pl/sql.
What is cursor in pl sql with examples?
Is left join inner or outer by default?
What are triggers and its uses?
can a stored procedure call itself or recursive stored procedure? : Sql dba
Dear All, Question for this Week Find out possible error(s) (either at compile time or at runtime) in the following PL/SQL block. State the reason(s) and correct the errors. Declare Cursor C1 is select ename, sal, comm from emp; Begin For i in C1 Loop If i.comm between 299 and 999 then Dbms_output.put_line(i.Ename || ‘ ** Good Commission’); Elsif i.comm > 999 then Dbms_output.put_line(i.Empno || ‘ ** Very Good Commission’); close C1; Else Dbms_output.put_line(i.Ename || ‘ ** ’ ||nvl(i.comm,‘O’)); End if; End Loop; End;