vote up 1 vote down star

I'm working on databases that have moving tables auto-generated by some obscure tools. By the way, we have to track information changes in the table via some triggers. And, of course, it occurs that some changes in the table structure broke some triggers, by removing a column or changing its type, for example.

So, the question is: Is there a way to query the Oracle metadata to check is some triggers are broken, in order to send a report to the support team?

The user_triggers give all the triggers and tells if they are enable or not, but does not indicate if they are still valid.

flag

62% accept rate

2 Answers

vote up 4 vote down check
SELECT *
FROM   ALL_OBJECTS
WHERE  OBJECT_NAME = trigger_name
AND    OBJECT_TYPE = 'TRIGGER'
AND    STATUS <> 'VALID'
link|flag
Nice! Thanks a lot! – gizmo Sep 23 '08 at 13:19
Select * from user_objects where satus != 'VALID' – Brian Oct 2 '08 at 2:50
vote up 0 vote down

Have a look at SYS.OBJ$, specifically the STATUS column.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.