vote up 5 vote down star
2

In SQL Server 2005, is there a way for a trigger to find out what object is responsible for firing the trigger? I would like to use this to disable the trigger for one stored prodecure.

Is there any other way to disable the trigger only for the current transaction? I could use the following code, but if I'm not mistaken, it would affect concurrent transactions as well - which would be a bad thing.

DISABLE TRIGGER { [ schema_name . ] trigger_name [ ,...n ] | ALL } ON { object_name | DATABASE | ALL SERVER } [ ; ]

ENABLE TRIGGER { [ schema_name . ] trigger_name [ ,...n ] | ALL } ON { object_name | DATABASE | ALL SERVER } [ ; ]

If possible, I would like to avoid the technique of having a "NoTrigger" field in my table and doing a NoTrigger = null, because I would like to keep the table as small as possible.

The reason I would like to avoid the trigger is because it contains logic that is important for manual updates to the table, but my stored procedure will take care of this logic. Because this will be a highly used procedure, I want it to be fast.

Triggers impose additional overhead on the server because they initiate an implicit transaction. As soon as a trigger is executed, a new implicit transaction is started, and any data retrieval within a transaction will hold locks on affected tables.

From: http://searchsqlserver.techtarget.com/tip/1,289483,sid87_gci1170220,00.html#trigger

flag

48% accept rate

10 Answers

vote up 7 vote down check

I just saw this article recently highlighted on the SQL Server Central newsletter and it appears to offer a way which you may find useful using the Context_Info on the connection:

http://www.mssqltips.com/tip.asp?tip=1591


EDIT by Terrapin:

The above link includes the following code:

USE AdventureWorks;  
GO  
-- creating the table in AdventureWorks database  
IF OBJECT_ID('dbo.Table1') IS NOT NULL  
DROP TABLE dbo.Table1  
GO  
CREATE TABLE dbo.Table1(ID INT)  
GO   
-- Creating a trigger  
CREATE TRIGGER TR_Test ON dbo.Table1 FOR INSERT,UPDATE,DELETE  
AS  
DECLARE @Cinfo VARBINARY(128)  
SELECT @Cinfo = Context_Info()  
IF @Cinfo = 0x55555  
RETURN  
PRINT 'Trigger Executed'  
-- Actual code goes here  
-- For simplicity, I did not include any code  
GO

If you want to prevent the trigger from being executed you can do the following:

SET Context_Info 0x55555 
INSERT dbo.Table1 VALUES(100)
link|flag
Excellent article - thanks for sharing! Exactly what I was looking for. – Terrapin Oct 7 '08 at 16:22
vote up 0 vote down

hi terrapin

did you succeed in finding an answer? i've been searching for it as well - one of our client have a system that receives information from an external source, but also allows manual updates, which need to be sent back to the external source.

we use a trigger on the updateable table(s) to write to an interface table, logging such updates to be sent back to the external source, but this trigger should not write to the interface table when the external source is updating the table, in order to prevent looping of information sent back and forth (i hope this makes sense!)

link|flag
vote up 0 vote down

I waffled a bit on this one. On the one hand I'm very anti-trigger mostly because it's one more place for me to look for code executing against my table, in addition to the reasons stated in the article linked in the question post.

On the other hand, if you have logic to enforce stable and immutable business rules or cross-table actions (like maintaining a history table) then it would be safer to get this into a trigger so procedure authors and programmers don't need to deal with it - it just works.

So, my recommendation is to put the necessary logic in your trigger rather than in this one proc which, will inevitably grow to several procs with the same exemption.

link|flag
vote up 1 vote down

I concur with some other answers. Do not disable the trigger. DDL statements do not run in the context of a transaction. Anything else executing in your database at the time that should fire the trigger will continue to run, not firing the trigger.

This is pure opinion, but I avoid triggers like the plague. I have found very few cases where a trigger was used to enforce database rules. There are obvious edge cases in my experience, and I have only my experience on which to make this statement. I have typically seen triggers used to insert some relational data (which should be done from the business logic), for insert data into reporting table ie denormalizing the data (which can be done with a process outside the transaction), or for transforming the data in some way.

There are legitimate uses for triggers, but I think that in everyday business programming they are few and far between. This may not help in your current problem, but you might consider removing the trigger altogether and accomplishing the work the trigger is doing in some other fashion.

link|flag
vote up 0 vote down

Consider rewriting the trigger to imporve performance if performance is the issue.

link|flag
vote up 1 vote down

Since you indicate that the trigger contains logic to handle all updates, even manual updates, then that should be where the logic resides. The example you mention, wherein a stored procedure "will take care of this logic" implies duplicate code. Additionally, if you want to be sure that every UPDATE statement has this logic applied regardless of author, then the trigger is the place for it. What happens when someone authors a procedure but forgets to duplicate the logic yet again? What happens when it is time to modify the logic?

link|flag
vote up 5 vote down

If your trigger is causing performance problems in your application, then the best approach is to remove all manual updates to the table, and require all updates to go through the insert/update stored procedures that contain the correct update logic. Then you may remove the trigger completely.

I suggest denying table update permissions if nothing else works.

This also solves the problem of duplicate code. Duplicating code in the update SP and in the trigger is a violation of good software engineering principles and will be a maintenance problem.

link|flag
Strongly disagree. There are many ways that data could be changed and business rules must be enforced at the database level. If the trigger is performing poorly it sould be rewritten but never removed or disabled. You can create very bad data integrity problems with your approach. – HLGEM Oct 6 '08 at 15:57
The stored procedure already maintains data integrity, and access to the table can be limited so that any process wishing to update it must use the proc. If you are permitting access to the table in many ways, the trigger is just a symptom of the problem, not the solution to it. – Dave DuPlantis Oct 6 '08 at 18:31
if it is possible to do as Jeffrey suggests, that would be the best solution. – Steven A. Lowe Oct 6 '08 at 18:40
vote up 0 vote down

Do not disable the trigger. You are correct that will disable for any concurrent transactions.

Why do you want to disable the trigger? What does it do? WHy is the trigger casuing a problem? It is usually a bad idea to disable a tigger from a data integrity perspective.

link|flag
vote up 1 vote down

ALTER TABLE tbl DISABLE TRIGGER trg

http://doc.ddart.net/mssql/sql70/aa-az_5.htm

I don't understand the meaning of your 1st paragraph though

link|flag
My first paragraph - In my trigger, is there a function I can use to get the name of the stored proc that fired my trigger? Kind of like using if (trigger_nestlevel(object_id('NameOfTrigger')) = 0) to make sure the trigger doesn't call itself – Terrapin Oct 6 '08 at 15:18
vote up 2 vote down

i seriously, seriously doubt it, and suggest you reconsider the purpose of the trigger instead

kinda defeats the purpose of a trigger!

EDIT: based on the clarification in the comments and your last edit, i think you're SOL.

just kidding! a suppress-the-trigger field in the table would work, but there's nothing to prevent manual updates from setting the field and screwing things up. Is there some other condition that you can check in the trigger to see if the processing has already been done? if not you may need to add sonething like that but in such a way that manual updates cannot screw it up

link|flag
and downvoting an answer you don't like does not alter the truth of it – Steven A. Lowe Oct 6 '08 at 15:08
The purpose of the trigger is to enforce certain rules for procedures that don't follow them. The main insert/update stored proc should have take those rules into account and avoid firing the trigger, since the trigger is a performance drain. – Terrapin Oct 6 '08 at 15:09
It's not just that I don't like your answer - it's that it didn't answer the question, and was not useful. – Terrapin Oct 6 '08 at 15:10
I don't think that the solution you want is possible, and suggested IMHO the only plausible alternative...hmmm...i guess we must define 'helpful' differently! ;-) – Steven A. Lowe Oct 6 '08 at 15:17
@Terrapin - If a trigger already performs a certain action, then there is no reason for the insert/update stored proc to do it itself. Conditionally disabling a trigger is probably also a performance drain. I think you should reconsider Steven's suggestion. – Jeffrey L Whitledge Oct 6 '08 at 15:17
show 4 more comments

Your Answer

Get an OpenID
or

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