exec utl_recomp.recomp_parallel(4);
recomp_parallel let you set degree of parallelism. 4 is good default.
There is also possible to use recomp_serial with utl_recomp.
If you need more info about utl_recomp you find it here:
http://docs.oracle.com/cd/E14072_01/appdev.112/e10577/u_recomp.htm
And you can check database invalid objects with this:
select object_name, object_Type, owner from dba_objects where status='INVALID';
You can also use all_objects if the user you are using does not have rights to use dba_objects.
No comments:
Post a Comment