You are on page 1of 1

CHECK INVALID OBJECTS

=======================
SELECT owner,
object_type,
object_name,
status
FROM dba_objects
WHERE status = 'INVALID'
ORDER BY owner, object_type, object_name;

You might also like