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

Is there a limit? How many triggers can be created on a single table in SQL Server?

Also is this limit changed in SQL Server 2000, 2005, 2008 and 2012.

Also there are two types of triggers INSTEAD OF triggers and For/After triggers. What is the limit on them separately?

share|improve this question
6  
I'm scared to ask why you need this. – Oded Jan 27 at 19:13
2  
Instead of Trigger is one per action type – Martin Smith Jan 27 at 19:22
That is just out of curiosity Oded. Giving Negative reputation to the question does not work. – Shiv Mohan Jan 27 at 19:30
Thank you martin. – Shiv Mohan Jan 27 at 19:31

1 Answer

up vote 3 down vote accepted

Limited by number of total objects in database. The sum of the number of all objects in a database cannot exceed 2,147,483,647

In other words, you don't have to be concerned about this limit; you'll never hit it under ordinary circumstances.

share|improve this answer
1  
Thanks Robert - can you add a link of MSDN or SQL server manual where it is specified. – Shiv Mohan Jan 27 at 19:20
3  
msdn.microsoft.com/en-us/library/ms143432.aspx. It was the first match to a Google Search for "SQL Server Limits". Google is an excellent resource; you should try it sometime. :) – Robert Harvey Jan 27 at 19:22
Thank you Robert for the link. It will help. – Shiv Mohan Jan 27 at 19:32

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.