In today’s article we will learn How to See Invalid Object in Oracle Database.
We can See Invalid Object using the following code block.
1 2 3 4 5 6 7 8 9 |
SELECT OWNER ,object_type ,object_name ,STATUS FROM dba_objects WHERE STATUS = 'INVALID' ORDER BY OWNER ,object_type ,object_name; |