当前位置: 代码迷 >> Oracle开发 >> Oracle获取发生错误的行以及执行了什么语句发生错误
  详细解决方案

Oracle获取发生错误的行以及执行了什么语句发生错误

热度:42   发布时间:2016-04-24 07:17:53.0
Oracle获取发生异常的行以及执行了什么语句发生异常
Oracle获取发生异常的行以及执行了什么语句发生异常

在线等,求解

------解决方案--------------------
exception
when others then
dbms_output.put_line(sqlcode);
dbms_output.put_line(substr(sqlerrm, 1, 200));
END;
  相关解决方案