Oracle Version - 11g
Cause : Oracle Multimedia Registry Components are not properly configured .
sqlplus / as sysdab
SQL> COL COMP_NAME FOR A20
SQL> COL COMP_ID FOR A20
SQL> select comp_id,comp_name,status from dba_registry where comp_name='Oracle Multimedia';
SQL> select comp_id,comp_name,status from dba_registry where comp_name='Oracle Multimedia';
COMP_ID COMP_NAME STATUS
-------------------- -------------------- --------
ORDIM Oracle Multimedia LOADING
Action
1) Reload Registry component
SQL>conn / as sysdba
SQL> execute sys.dbms_registry.loaded('ORDIM');
2) Validate Registry Status .
SQL> execute sys.dbms_registry.valid('ORDIM');
Now we can see the status is "VALID"
SQL> select comp_id,comp_name,status from dba_registry where comp_name='Oracle Multimedia';
COMP_ID COMP_NAME STATUS
-------------------- -------------------- --------
ORDIM Oracle Multimedia VALID
Awesome solution.... I waste my more than 8 hours to resolve this issue and non of blog showing correct solution... After doing this my issue got resolved... Thank you very much !!
ReplyDeleteThis comment has been removed by the author.
ReplyDelete