CATALOG , CATPROC components are invalid after creation of database manually

Today , I am creating 12c database manually. After creating database I executed catalog.sql and cataproc.sql. After that I checked the component status

SQL> select COMP_NAME,COMP_ID,VERSION,STATUS from dba_registry;

COMP_NAME                               COMP_ID         VERSION    STATUS
———————————— ————— ———- ———-
Oracle XML Database                     XDB             12.1.0.1.0 VALID
Oracle Database Catalog Views           CATALOG         12.1.0.1.0 INVALID

Oracle Database Packages and Types      CATPROC         12.1.0.1.0 INVALID


SQL> SQL> select count(*) from dba_objects where status=’INVALID’;

  COUNT(*)
———-
       100


1 row selected.


After executing the “@?/rdbms/admin/utlrp.sql” script the components became valid.


COMP_NAME                               COMP_ID         VERSION    STATUS
———————————— ————— ———- ———-
Oracle XML Database                     XDB             12.1.0.1.0 VALID
Oracle Database Catalog Views           CATALOG         12.1.0.1.0 VALID

Oracle Database Packages and Types      CATPROC         12.1.0.1.0 VALID

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s