Using SQL 7.0
How can one tell if a trigger on a table is disabled ...
I disabled a trigger but I can't find a system stored
procedure that provides info as to whether
the trigger is enabled or disabled.
Thanks
John
If OBJECTPROPERTY(OBJECT_ID('TrgName'),
'ExecIsTriggerDisabled') = 1
Print 'Trigger is disabled"
Else
Print 'Trigger is enabled' Terry L. Broadbent - DBA
Computing Links:
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.