Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Autonomous Transactions
I created a proc that do something like this:
update T set field = UPPER(field) where id = 1; commit;
end;
and inserted in an anonymous block this way:
l_res1 varchar(100); l_res2 varchar(100);
select field into l_res1 from T where id = 1; dbms_output.put_line('l_res1 = ' || l_res1);
update temp set temp1 = l_res1;
select field into l_res2 from T where id = 1; dbms_output.put_line('l_res2 = ' || l_res2);
update aaa_temp set temp2 = l_res2;
rollback;
end;
As I expected last rollback didn't prevent myproc to commit.
But If I delete "pragma autonomous_transaction;" from proc body and run anonym block, I expect to have all work rolled back but it doesn't work.
What is the behavior???
Thx to all. Received on Mon Aug 28 2006 - 06:00:24 CDT
![]() |
![]() |