Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Status of Triggers

Status
Not open for further replies.

ulicki

Technical User
Oct 24, 2001
88
US
I am working on a proposal for a custom applicaton for a client that involves the uses of triggers. We will allow the user to enable/disable the triggers via a VB application. We also want to display the status of each trigger via the VB application: What SQL statement can we run to obtain this information (i.e. Can it be done)?

Database is ORACLE 8i

Thank you,

Mike
 
select status from dba_triggers where trigger_name = <name> will return 'DISABLED' if the trigger is disabled.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top