pragma autonomous_transaction and rollback : Autonomous_transaction « Stored Procedure Function « Oracle PL / SQL

Home
Oracle PL / SQL
1.Aggregate Functions
2.Analytical Functions
3.Char Functions
4.Constraints
5.Conversion Functions
6.Cursor
7.Data Type
8.Date Timezone
9.Hierarchical Query
10.Index
11.Insert Delete Update
12.Large Objects
13.Numeric Math Functions
14.Object Oriented Database
15.PL SQL
16.Regular Expressions
17.Report Column Page
18.Result Set
19.Select Query
20.Sequence
21.SQL Plus
22.Stored Procedure Function
23.Subquery
24.System Packages
25.System Tables Views
26.Table
27.Table Joins
28.Trigger
29.User Previliege
30.View
31.XML
Oracle PL / SQL » Stored Procedure Function » Autonomous_transaction 
pragma autonomous_transaction and rollback
   

SQL>
SQL> create table t msg varchar2(25) );

Table created.

SQL> create or replace procedure Autonomous_Insert
  2  as
  3          pragma autonomous_transaction;
  4  begin
  5          insert into t values 'Autonomous Insert' );
  6          commit;
  7  end;
  8  /

Procedure created.

SQL> create or replace procedure NonAutonomous_Insert
  2  as
  3  begin
  4          insert into t values 'NonAutonomous Insert' );
  5          commit;
  6  end;
  7  /

Procedure created.

SQL> begin
  2          insert into t values 'Anonymous Block' );
  3          NonAutonomous_Insert;
  4          rollback;
  5  end;
  6  /

PL/SQL procedure successfully completed.

SQL> select from t;

MSG
-------------------------
Anonymous Block
NonAutonomous Insert

SQL> delete from t;

rows deleted.

SQL> commit;

Commit complete.

SQL> begin
  2          insert into t values 'Anonymous Block' );
  3          Autonomous_Insert;
  4          rollback;
  5  end;
  6  /

PL/SQL procedure successfully completed.

SQL> select from t;

MSG
-------------------------
Autonomous Insert

SQL>
SQL> drop table t;

Table dropped.

SQL>

   
    
    
  
Related examples in the same category
1.pragma autonomous_transaction and exception
2.pragma autonomous_transaction and raise exception
3.Mark function with 'pragma autonomous_transaction'
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.