Oracle通过shell脚本查看package的信息(3)

-------------
 -- EXCEPTIONS
 --
  invalid_argval EXCEPTION;
    PRAGMA EXCEPTION_INIT(invalid_argval, -31600);
    invalid_argval_num NUMBER := -31600;
 -- "Invalid input value %s for parameter %s in function %s"
 -- *Cause:  A NULL or invalid value was supplied for the parameter.
 -- *Action: Correct the input value and try the call again.

invalid_operation EXCEPTION;
    PRAGMA EXCEPTION_INIT(invalid_operation, -31601);
    invalid_operation_num NUMBER := -31601;
 -- "Function %s cannot be called now that fetch has begun"
 -- *Cause:  The function was called after the first call to FETCH_xxx.
 -- *Action: Correct the program.

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/6e40c21935a533bff668f058ffd97ebc.html