Which has the higher priority in your organization: Deploying a new database or securing the ones you already have?
Looking for a website, and resources, dedicated solely to securing Oracle databases? Check out DBSecWorx.
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