Hi,
There is an specific system table for triggers in Oracle that's USER_TRIGGERS.
U can query...
SELECT * FROM USER_TRIGGERS
to get all the information about all the triggers owned by the current user. if you know the trigger name then u can be more specific as.....
SELECT * FROM USER_TRIGGERS WHERE TRIGGER_NAME = 'YourTriggerName'
This query will return the status of ur trigger also.
Akhil
|