Find and compile invalid Maximo objects
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
Thank You! You comment is under review and will be published soon..
Thank You! You comment is Published.
Popular posts
Bulk add/remove of access rights
2015-01-03
Get Maximo location hierarchy
2017-11-08
Find and compile invalid Maximo objects
2016-05-05
Change NLS_LENGTH_SEMANTICS to CHAR
2015-03-01
Skip doclinks copy on object duplication
2019-06-27