Partial Rollbacks
The ability to rollback transactionsin PL/SQL is very helpful when something goes wrong and you want to undo what was just done. At a very high level, most code that use rollback look like the following:
begin
...
exception
when others then
r...
talkapex.com2 min read