Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm changing from local time to UTC-time in our database.
There are alot of triggers that copies information to history tables that currently uses GETDATE().

I would like to find every trigger that uses GETDATE() (instead of GETUTCDATE()) in the database, is there any way to do this automatic?

I've listed them by select * from sys.triggers but I also need to see the actual code to be able to find the use of GETDATE().

share|improve this question

1 Answer

up vote 9 down vote accepted

Your could try the following:

SELECT      o.[name],
            c.[text]
FROM        sys.objects AS o
INNER JOIN  sys.syscomments AS c
ON      o.object_id = c.id
WHERE   o.[type] = 'TR'
share|improve this answer
1  
Thanks! Just what I was looking for! – nj. Jun 28 '11 at 14:15
Ideally you would be able to generate scripts for them like you can for tables and stored procedures, etc, but this works. Thanks ;) – Chiramisu May 31 '12 at 1:49

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.