create or replace procedure top_logging is
demo number;
begin
select * into demo from dual;
exception
when others then
dbms_output.put_line(dbms_utility.format_error_backtrace());
end top_logging;
/
sql> exec top_logging;
ora-06512: 在 "sys.top_logging", line 4
|