Technical Blog

Pages

▼
Feb 26, 2016

Cursor Execution Cycle

›
  Detailed phase of cursor execution  1. The cursor is opened  2. Parse SQL  3. The query is described to know the projection (w...
Feb 25, 2016

Restore point

›
 A restore point is an attribute of a database, not a transaction, so you can generate many transactions and still restore the entire datab...
Feb 17, 2016

SAVEPOINT

›
SAVEPOINT identify a point in a transaction to which you can later roll back. Example create table countries (region_id number,region_...
Feb 11, 2016

Examples of Ref Cursor1

›
REF CURSOR Example create or replace package strongly_typed is     type return_cur is ref cursor return all_tables%rowtype;     proced...
Feb 8, 2016

Examples of Ref Cursor

›
SYS_REFCURSOR  Example create or replace function f return SYS_REFCURSOR as   c SYS_REFCURSOR; begin   open c for select empno  from em...
‹
›
Home
View web version
Powered by Blogger.