ORA-20000
作者: moonsoft(http://moonsoft.itpub.net)发表于: 2007.05.14 17:28
分类: Oracle基础/数据仓库/BI , ORACLE DBA
出处: http://moonsoft.itpub.net/post/15182/287644
---------------------------------------------------------------
ORA-20000: %s
Cause: The stored procedure 'raise_application_error' was called which causes this error to be generated.
ORA-20000: %s
Cause: The stored procedure 'raise_application_error' was called which causes this error to be generated.
Action: Correct the problem as described in the error message or contact the application administrator or DBA for more information.
解决方法
--DBMS_OUTPUT.PUT_LINE(length(v_msg_details));
DBMS_OUTPUT.put_line('details' || substr(v_msg_details, 0, 240));
DBMS_OUTPUT.put_line(substr(v_msg_details, 240, length(v_msg_details)));
DBMS_OUTPUT.put_line('count number: ' || v_message_count);


