| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.misc -> Problem with Multiple transaction ROLLBACK
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;
![]() |
![]() |