记录一下oracle存储过程中出现异常并继续执行的问题
使用语句:
begin
execute immediate sql;
execute immediate 'create index test ...;
exception
when others then
null;
end;
begin
execute immediate sql;
execute immediate 'create index test ...;
exception
when others then
null;
end;