Hello Experts,
May I know that During manual DB creation we run catalog.sql, catproc.sql, pupbld.sql. Why?
What happend in background ?
Please explain, Thanks in advance.
Updated May 18, 2018
Hello Experts,
May I know that During manual DB creation we run catalog.sql, catproc.sql, pupbld.sql. Why?
What happend in background ?
Please explain, Thanks in advance.
Comments
We run these scripts post to the manula creation of database because
catalog.sql creates all the data dictionary views,
catproc.sql creates system specified stored procedures
pupbld.sql creates the default roles and profiles.
How to run this script
Go to sql prompt
---- --- --- ---
sqlplus /nolog
connect /as sysdba
SQL>@?/rdbms/admin/catalog.sql
SQL>@?/rdbms/admin/catproc.sql
SQL>@?/rdbms/admin/pupbld.sql
---- --- --- ---