Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Nested Oracle Stored Procedures

572518Jan 8 2008 — edited Jan 8 2008
I have below nested stored proc call ..
what happens if inner proc rolls back transaction , does outer proc also rollsback or it will continue its exection.


outerProc( ) as
begin
insert into table ...
innerProc()
commit;
end;

innerProc() as
begin
insert into table ..
commit;
exception when others then rollback;
end;
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 5 2008
Added on Jan 8 2008
4 comments
3,907 views