Select object_name, object_type,status from all_objects
where status ='INVALID' and object_name like 'MSR%';
(Or)
SELECT OWNER,object_name,object_type,status FROM DBA_OBJECTS WHERE STATUS = 'INVALID' order by owner,object_type;
You can use adadmin utility to compile or you can use utlrp.sql script shipped with Oracle Database to compile Invalid Database Objects.
You can use ojspCompile.pl perl script shipped with Oracle apps to compile JSP files. This script is under $JTF_TOP/admin/scripts. Sample compilation method is perl ojspCompile.pl --compile –quiet
Comments
Post a Comment