Click here to monitor SSC
SQLServerCentral is supported by Red Gate Software Ltd.
 
Log in  ::  Register  ::  Not logged in
 
 
 

Query to Display Trigger Status

By Additional Articles, 2013/05/24

Ever wanted to know whether your triggers are enabled or not? The ObjectProperty command allows you to select information about the status of objects in your database, returning 1 for True and 0 for False. The example below determines whether a single trigger is disabled. SELECT ObjectProperty(object_id('Trigger_Name'), 'ExecIsTriggerDisabled') There are a number of other useful properties that can be returned, see help for the ObjectProperty command for more details. The code below lists all tables that have a trigger and the status of that trigger.

Total article views: 991 | Views in the last 30 days: 7
 
Related Articles
FORUM

ObjectProperty returning Null

Trying to find out if a Trigger is enabled

FORUM

Trigger

Trigger

FORUM

Triggers

Trigger

FORUM

Triggers

Trigger

FORUM

trigger

trigger

 
Contribute

Join the most active online SQL Server Community

SQL knowledge, delivered daily, free:

Email address:  

You make SSC a better place

As a member of SQLServerCentral, you get free access to loads of fresh content: thousands of articles and SQL scripts, a library of free eBooks, a weekly database news roundup, a great Q & A platform… And it’s our huge, buzzing community of SQL Server Professionals that makes it such a success.

Join us!

Steve Jones
Editor, SQLServerCentral.com

Already a member? Jump in:

Email address:   Password:   Remember me: Forgotten your password?
Steve Jones