Answers

Question and Answer:

  Home  Oracle PL-SQL

⟩ What will happen after commit statement?

Cursor C1 is

Select empno,

ename from emp;

Begin

open C1; loop

Fetch C1 into

eno.ename;

Exit When

C1 %notfound;-----

commit;

end loop;

end;

The cursor having query as SELECT .... FOR UPDATE gets closed after COMMIT/ROLLBACK.

The cursor having query as SELECT.... does not get closed even after COMMIT/ROLLBACK.

 217 views

More Questions for you: