What is the autonomous transaction?give me example?
Answers were Sorted based on User's Feedback
Answer / ramesh babu v
Autonomous transaction can be devided into two parts as
parent&child,both(parent&child) are run simultaniously and
individually run.
EX:
create table R1(B1 number);
Table created.
create table R2(B2 number);
Table created.
/
1 create or replace procedure p1
2 as
3 pragma autonomous_transaction;
4 begin
5 insert into R1 values(101);
6 commit;
7* end;
/
Procedure created.
/
select * from R1;
B1
---
101
/
> create or replace procedure p2
2 as
3 begin
4 insert into R2 values(102);
5 p1;
6 rollback;
7 end;
8 /
Procedure created.
SQL> select * from R2;
no rows selected.
| Is This Answer Correct ? | 10 Yes | 1 No |
if we want to make one transaction as independent among other or parent transaction,we will use the concept call autanamous transaction,
we will use pragma autanamus_transaction keyword in order to make one transaction as independent,so this transaction will run idependently...
| Is This Answer Correct ? | 3 Yes | 0 No |
WHAT IS THE USE OF SKIP WHERE U WILL GIVE?
How You Will display the key flexifields in your report
what is the defference between credit memo and debit memo
In a package have predefined exception and user defined exception. while execution which exception will be executed first? why?
explain o2c cycle? what are the table reflected for this process?
How relation will be made between modules in oracle financial?
which is the table for storing organization information?
9 Answers Infosys, Scan Steel,
q)what are the validations in sql*loader
List of all the modules under Manufacturing, Finance and Distribution in oracle applications?
what is the back ground program run while transferring data from OM to AR?
in sql *loder how to skip the middle records ex:from 10th to 20th records i want to skip?
In Per_all_people_f table what is the significance of '_f ' ?