Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for the most portable method to check for existance of a trigger in MS SQL Server. It needs to work on at least SQL Server 2000, 2005 and preferably 2008.

The information does not appear to be in INFORMATION_SCHEMA, but if it is in there somewhere, I would prefer to use it from there.

I do know of this method:

if exists (
    select * from dbo.sysobjects 
    where name = 'MyTrigger' 
    and OBJECTPROPERTY(id, 'IsTrigger') = 1
) 
begin

end

But I'm not sure whether it works on all SQL Server versions.

So my questions are:

  • Is the above the "best" way?
  • Are there any alternative methods?
  • What are their pros and cons?
share|improve this question

5 Answers

up vote 28 down vote accepted

There's also the preferred "sys.triggers" catalog view:

select * from sys.triggers where name = 'MyTrigger'

or call the sp_Helptrigger stored proc:

exec sp_helptrigger 'MyTableName'

But other than that, I guess that's about it :-)

Marc

Update (for Jakub Januszkiewicz):

If you need to include the schema information, you could also do something like this:

SELECT
    (list of columns)
FROM sys.triggers tr
INNER JOIN sys.tables t ON tr.parent_id = t.object_id
WHERE t.schema_id = SCHEMA_ID('dbo')   -- or whatever you need
share|improve this answer
select * from sys.triggers where name = 'MyTrigger' doesn't work for my (correctly working etc.) trigger, while wgw's IF OBJECTPROPERTY(OBJECT_ID('{your_trigger}'), 'IsTrigger') = 1 does... MSSQL 2008 R2. – Jakub Januszkiewicz Dec 2 '11 at 12:39
@JakubJanuszkiewicz: are you in the right DB when you run this?? sys.triggers always shows the trigger in your current DB - it doesn't show all triggers from all databases... – marc_s Dec 2 '11 at 15:44
@marc-s: I was in the correct DB. I have found the problem - the name column in sys.triggers is just a name (without schema name), while OBJECT_ID('...') expects a schema-qualified name (at least if the schema if a non-default one, if I understand it right). So after I copied my working OBJECT_ID('MySchema.MyTrigger') to select * from sys.triggers, it didn't work. Filtering by just 'MyTrigger' works fine. – Jakub Januszkiewicz Jan 2 '12 at 6:53
1  
@marc-s: By the way, this also means that if you have more than one trigger with the same name in different schemas of a DB, select * from sys.triggers will give you a false positive. Something along the lines of select * from sys.objects where type = 'TR' and schema_id = (select schema_id from sys.schemas where name = 'YourSchema') and name = 'YourTrigger' will get the correct trigger. – Jakub Januszkiewicz Jan 2 '12 at 6:54
This will not work in SQL Server 2000, as required in the question, as the sys... catalog views were introduced in SQL Server 2005. – Simon Tewsi Apr 26 at 11:24

This works on SQL2000 and above

IF OBJECTPROPERTY(OBJECT_ID('{your_trigger}'), 'IsTrigger') = 1
BEGIN
    ...
END
share|improve this answer
Thats should be the answer. +1 – Royi Namir Nov 21 '11 at 8:47
@Royi: Unfortunately StackOverflow does not work as intended and the wrong (accepted) answer will always be at the top. – wqw Mar 28 '12 at 11:30

Assuming it is a DML trigger:

IF OBJECT_ID('your_trigger', 'TR') IS NOT NULL
BEGIN
    PRINT 'Trigger exists'
END
ELSE
BEGIN
    PRINT 'Trigger does not exist'
END

For other types of objects (tables, views, keys, whatever...), see: http://msdn.microsoft.com/en-us/library/ms190324.aspx under 'type'.

share|improve this answer
1  
This checks any object type, not only triggers. – Jakub Januszkiewicz Jan 2 '12 at 6:56
I fixed it now Jakub. – beruic Oct 30 '12 at 15:05
Taking back my -1 then, thanks. – Jakub Januszkiewicz Apr 16 at 21:20

Tested and doesn't work on SQL 2000:

select * from sys.triggers where name = 'MyTrigger'

Tested and works ok on SQL 2000 and SQL 2005:

select * from dbo.sysobjects
where name = 'MyTrigger' and OBJECTPROPERTY(id, 'IsTrigger')
share|improve this answer
FWIW, your select * from dbo.sysobjects where name = 'MyTrigger' and OBJECTPROPERTY(id, 'IsTrigger') doesn't work for my correctly-functioning after insert, delete trigger on SQL-2000. The row is there in sysobjects, but OBJECTPROPERTY(id, 'IsTrigger') on its ID (as part of the above or separately just using its raw ID) gives 0. Checking for xtype = 'TR' or type = 'TR' works. – T.J. Crowder Apr 24 '10 at 16:56

Are trigger names forced to be unique in SQL server?

As triggers are by definition applied to a specific table would it not be more efficient to restrict the search to only the table in question?

We have a database with over 30k tables in it all of which have at least one trigger and may have more (bad DB design - quite probably, but it made sense years ago and didn't scale well)

I use

SELECT * FROM sys.triggers 
WHERE [parent_id] = OBJECT_ID(@tableName) 
AND [name] = @triggerName
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.