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
Undocumented InterMedia / MultiMedia Support Utility
AUTHID
CURRENT_USER
Dependencies
STANDARD (only)
Documented
No
First Available
12.1
Security Model
Owned by ORDSYS with EXECUTE granted to PUBLIC
Source
{ORACLE_HOME}/ord/im/admin/ordzpksp.plb
COMPATIBILITYINIT
Undocumented
im.compatibilityInit(
release IN VARCHAR2,
errmsg OUT VARCHAR2)
RETURN NUMBER;
conn ordsys
Enter password:
set serveroutput on
DECLARE
n NUMBER;
eMsg VARCHAR2(256);
BEGIN
n := ordsys.im.compatibilityInit('21.1.0.0', eMsg);
dbms_output.put_line('Return Value: ' || TO_CHAR(n));
dbms_output.put_line('Error Msg: ' || eMsg);
END;
/ Return Value: 0
Error Msg: