while upgrading your database to 12c , its very important that you monitor your alert.log file to check for errors and potential problems.
to find out the location of you alert log file, query the following:
SQL> select * form v$diag_info;
one of the databases that i have upgraded, i found the following error being thrown in the alert.log file:
XDB SGA reset to NULL.
ORA-00604: error occurred at recursive SQL level 1
ORA-06598: insufficient INHERIT PRIVILEGES privilege
ORA-06512: at “XDB.DBMS_CSX_INT”, line 1
this error can be ignored, to ensure that your XDB component is ok run the utilrip after the upgrade is completed:
SQL>@?/rdbms/admin/utlrp.sql
make sure that the XDB is fine by querying:
SQL> select COMP_NAME,VERSION,STATUS from dba_registry;
so basically the error is not dangerous but you need to verify that everything is fine.
*************************************** …….***************************************** 🙂