How to use savepoints in oracle procedure

2019-05-18 01:08发布

I have multiple updates and insert statements in a procedure.

Please refer below example:

Procedure Example

--code

Update 1

insert 1

Update 2

Update 3 --Suppose exception occurs

Now i want to rollback to before 1st update statement means no update or insert affects.

3条回答
Summer. ? 凉城
2楼-- · 2019-05-18 01:38
BEGIN

  Savepoint do_update_1;

  Update 1;

  insert 1;

  Update 2;

  Update 3; --Suppose exception occurs

EXCEPTION
  WHEN some_exception THEN Rollback To do_update_1;
END;


====== edit ==========

Working example: http://sqlfiddle.com/#!4/b94a93/1

create table tttt(
  id int,
  val int
)
/

declare 
  x int := 0;
begin
  insert into tttt values( 1,1);
  insert into tttt values( 2,2);
  Savepoint do_update_1;

  insert into tttt values( 3,3);
  update tttt set val = 0 where id = 2;
  update tttt set val = 10 / val where id = 2;

exception
  when zero_divide then rollback to do_update_1;
end;
/
查看更多
ら.Afraid
3楼-- · 2019-05-18 01:48

You can catch exception in exception when clause and execute rollback statement, e.g.

procedure test
is
begin
    Insert into t values (1);
    Update t set x = 1;
exception when <your exception> then
    Rollback;
end;
查看更多
淡お忘
4楼-- · 2019-05-18 01:57

try

BEGIN

  BEGIN
  Savepoint do_update_1;


  Update 1;

  insert 1;

  Update 2;

  Update 3; --Suppose exception occurs

  EXCEPTION
    WHEN some_exception THEN Rollback To do_update_1;

  END;
END;

** note the BEGIN END block

查看更多
登录 后发表回答