Can we use SQL%ISOPEN in implicit cursors? Does this
attribute works properly in Implicit Curosors?
Answer Posted / 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 |
Post New Answer View All Answers
Under what condition it is possible to have a page level lock and row lock at the same time for a query? : Transact sql
what are the system privileges that are required by a schema owner (user) to create a trigger on a table?
What is database sql?
Does truncate remove indexes?
What is pivot in sql?
How is indexing done in search engines?
How is sql used in oracle?
What is query optimization in sql?
What does := mean in pl sql?
What is the difference between a primary key and a clustered index?
how can we submit a form without a submit button? : Sql dba
What is data modelling in sql?
What is %rowtype in pl sql?
How to write a single statement that concatenates the words ?hello? And ?world? And assign it in a variable named greeting?
Which certification is best for sql?