ACE Director Alum Daniel Morgan, founder of Morgan's Library, is scheduling
complimentary technical Workshops on Database Security for the first 30
Oracle Database customers located anywhere in North America, EMEA, LATAM, or
APAC that send an email to
asra_us@oracle.com. Request a Workshop for
your organization today.
Purpose
Multimedia exception raising utility.
AUTHID
DEFINER
Dependencies
ORDERROR
Documented
No
First Available
12.2
Security Model
Owned by ORDSYS with no privileges granted
Source
{ORACLE_HOME}/ord/im/admin/ordzepsp.plb
RAISE
Raises an exception
orderrorint.raise(
msgnum IN BINARY_INTEGER,
msgsv1 IN VARCHAR2,
msgsv2 IN VARCHAR2,
msgsv3 IN VARCHAR2,
msgsv4 IN VARCHAR2,
msgsv5 IN VARCHAR2);
-- there is no error in the following code sample ... it is working as designed. Tell it to raise an exception and it does.
SQL> exec ordsys.orderrorint.raise(53202, 'invalid error message');
BEGIN ordsys.orderrorint.raise(53202, 'invalid error message'); END;
*
ERROR at line 1: ORA-53202: internal error, argument [invalid error message]
ORA-06512: at "ORDSYS.ORDERROR", line 5
ORA-06512: at "ORDSYS.ORDERRORINT", line 13
ORA-06512: at line 1