How to compile invalid objects faster:-
To know Invalid objects issue
select count(*) from dba_objects where status like 'INVALID';
To compile these invalid objects faster than normal case then issue following command in sql prompt
SQL>@?/rdbms/admin/utlrp.sql n;
Where n= no of CPU's + 2
This will compile your invalid objects faster than normal case.
To know Invalid objects issue
select count(*) from dba_objects where status like 'INVALID';
To compile these invalid objects faster than normal case then issue following command in sql prompt
SQL>@?/rdbms/admin/utlrp.sql n;
Where n= no of CPU's + 2
This will compile your invalid objects faster than normal case.
No comments:
Post a Comment