views:

15

answers:

2

Can 2 update or insert triggers be created on the same table in SQL Server 2008?

+2  A: 

Yes you can create multiple triggers on the same table.

You can also specify which is the first and the last trigger to execute. Read more here

http://technet.microsoft.com/en-us/library/ms186762.aspx

But if you have more than three triggers, you have no control over the execution order between the specified first and last triggers.

Raj More
A: 

You can yes. They must have a unique name but also bear in mind subsequent triggers will have to be AFTER triggers.

Pace