Store Procedure 例外處理

Store Procedure 例外處理


As
begin
  ...
  exception
    when others then
      --print exception
      dbms_output.put_line(DBMS_UTILITY.FORMAT_ERROR_STACK);
end test;