Find and compile invalid Maximo objects

Technical 0 Comments

Got too many invalid objects in Maximo database. Recompile and make them valid quickly.

 

SELECT 
       'alter '|| object_type || ' "MAXIMO"."'|| object_name || '"  compile;'
FROM   sys.dba_objects
WHERE  status = 'INVALID' AND OWNER = 'MAXIMO'
ORDER BY owner, object_type, object_name;

Share this post


Blog Comments


Post your comment






Thank You! You comment is under review and will be published soon..
Thank You! You comment is Published.