oracle如何捕获存储过程报错是哪一行
3个回答
展开全部
如果数据库是10g及以上版本,可以使用dbms_utility.format_error_backtrace(),这个函数能够返回错误行,可以套用以下格式:
create or replace procedure prc_test(参数) is
v_no number;
begin
select no into v_no from zrp;
exception
when others then
dbms_output.put_line('SQL CODE:'||sqlcode||chr(10)||
sqlerrm||chr(10)||
dbms_utility.format_error_backtrace());
end;
这样写的好处是,当程序发成异常,呗exception捕获后,就会打印出错误信息及发生错误的行号
create or replace procedure prc_test(参数) is
v_no number;
begin
select no into v_no from zrp;
exception
when others then
dbms_output.put_line('SQL CODE:'||sqlcode||chr(10)||
sqlerrm||chr(10)||
dbms_utility.format_error_backtrace());
end;
这样写的好处是,当程序发成异常,呗exception捕获后,就会打印出错误信息及发生错误的行号
追问
谢谢你的回答,但是这样不是记录的错误语句所在的行啊
追答
这个函数,是目前定位错误最精确的函数了。是oracle10g版本中新增的。
oracle官方对此函数的解释是:
function format_error_backtrace return varchar2;
pragma interface (C, format_error_backtrace); -- 4 (see psdicd.c)
-- Format the backtrace from the point of the current error
-- to the exception handler where the error has been caught.
-- NULL string is returned if no error is currently being
-- handled.
如果你觉得它不够精确,那就没有办法了。
个人觉得很多东西还是需要靠经验的。定位错误的函数,已经帮我们缩小范围了。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
show errors
追问
具体如何操作了,show errors 写在哪里了 ?
麻烦讲解下 ,谢谢了
追答
执行完存储过程后
SQL>show errors
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
报错都会有提示的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询