Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Problem with Multiple transaction ROLLBACK
Are you sure the procedures don't have do COMMIT? Hidden COMMITs ca be a real pain.
nick wrote:
>
> BEGIN
> SELECT ....;
> UPDATE ...;
> sp_ins (...); /* suposed this procedure raise an error.
> Rollback works well */
> .
> .
> sp_upd (...); /* But when this procedure raise an error*/
> sp_del (...); /* before this call already commit WHY? */
> .
> INSERT ...;
> EXCEPTION
> WHEN OTHERS THEN
> ROLLBACK;
> RAISE;
> COMMIT;
> END;
>
> Thanks in advance,
> Nick.
--
Ed Prochak
Magic Interface, Ltd.
440-498-3702
Received on Mon May 31 1999 - 12:47:45 CDT
![]() |
![]() |