Given the following code:
for x in my_cursor loop
begin
<<stmt_1>>
<<stmt_2>>
exception
when others then
<<log_error>>
end;
end loop;
Say there are 5 x's in my_cursor. On element x3, stmt_1 works fine but stmt_2 throws an exception. I'd like to rollback ONLY the work done on x3 (in this case, stmt_1), then continue the loop from the next element, x4. Can this be achieved with some combination of savepoint/rollback?