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

来源:互联网 发布:java调用lua脚本 编辑:程序博客网 时间:2024/05/14 23:20

使用语句:

  begin
    execute immediate sql;
    execute immediate 'create index
 test ...;
  exception
    when others then
      null;
  end;

原创粉丝点击