记录一下oracle存储过程中出现异常并继续执行的问题

2014-11-24 17:01:14 · 作者: · 浏览: 6
记录一下oracle存储过程中出现异常并继续执行的问题
使用语句:
  begin

    execute immediate sql;

    execute immediate 'create index test ...;

  exception

    when others then

      null;

  end;