/ Published in: SQL
Find List Show See all objects such as Packages Procedures Functions Views that are INVALID
Expand |
Embed | Plain Text
SELECT owner , object_type , object_name , STATUS FROM all_objects WHERE STATUS != 'VALID' AND owner = USER ORDER BY owner, object_type, object_name ;
You need to login to post a comment.
