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
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: