Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Autonomous Transactions
I noticed that a commit inside a procedure, commit also all changes
outside its begin...end block.
Is it possible? Why?
begin
insert into test values ('test'); aaa_proc1; -- in this procedure at the end there is commitinstruction.
end;
This anonymous block cause 'test' value to be inserted.
Is it correct? I think (proc) commit should affect only its begin end bloc....
??? Received on Mon Aug 28 2006 - 07:19:30 CDT