Can we use SQL%ISOPEN in implicit cursors? Does this
attribute works properly in Implicit Curosors?

Answers were Sorted based on User's Feedback



Can we use SQL%ISOPEN in implicit cursors? Does this attribute works properly in Implicit Curosors..

Answer / pr@$@d

Implicit cursors: SQL%ISOPEN always returns FALSE,
indicating that the implicit cursor has been closed.

I hope below example gives you very fair idea.

SQL> BEGIN
2 UPDATE employee
3 SET salary = salary *2
4 WHERE id = '01';
5
6 IF not SQL%ISOPEN THEN
7 DBMS_OUTPUT.PUT_LINE('closed');
8 END IF;
9 END;
10 /
closed

PL/SQL procedure successfully completed.

Thanks
-Pr@$@d

Is This Answer Correct ?    13 Yes 6 No

Can we use SQL%ISOPEN in implicit cursors? Does this attribute works properly in Implicit Curosors..

Answer / pradeep naidu manne tcs

IMPLICIT CURSORS ARE OPENED N CLOSED IMPLICITLY SO SQL%FOUND WILL ALWAYS EVALUATES FALSE

Is This Answer Correct ?    4 Yes 0 No

Can we use SQL%ISOPEN in implicit cursors? Does this attribute works properly in Implicit Curosors..

Answer / chandu

sure..

Is This Answer Correct ?    4 Yes 4 No

Post New Answer

More SQL PLSQL Interview Questions

how can stop the sequence with mention the max value and with out mention the max value

1 Answers   Zensar,


7. Where would you look for errors from the database design?

1 Answers   Fintellix,


how to rename an existing column in a table? : Sql dba

0 Answers  


What do you understand by pl/sql records?

0 Answers  


where are cookies actually stored on the hard disk? : Sql dba

0 Answers  






What do you mean by stored procedures? How do we use it?

0 Answers  


What is a join?

0 Answers  


What is correlated sub-query?

7 Answers   Oracle,


What found sql?

0 Answers  


What are the sql commands?

0 Answers  


What is sql lookup?

0 Answers  


What are synonyms in sql?

0 Answers  


Categories