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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Database Trigger status check

Status
Not open for further replies.

dorub

Programmer
Oct 15, 2002
12
0
0
RO
I am developing a form using Forms 4.5 that would only work properly in conjunction whith two database triggers (on insert and update).How can I be sure,by the time of the initialization of the form , that the triggers are valid and enabled ?
 
select status from user_triggers where trigger_name=<name> to check whether it's enabled

select status from user_objects where object_type='TRIGGER' and object_name=<name> to check whether it's valid
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top