SQL Server "AFTER INSERT" trigger doesn't see the just-inserted row - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T05:27:36Zhttp://stackoverflow.com/feeds/question/405288http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/405288/sql-server-after-insert-trigger-doesnt-see-the-just-inserted-row14SQL Server "AFTER INSERT" trigger doesn't see the just-inserted rowJoel Spolsky2009-01-01T18:50:01Z2009-06-30T19:12:57Z
<p>Consider this trigger:</p>
<pre><code>ALTER TRIGGER myTrigger
ON someTable
AFTER INSERT
AS BEGIN
DELETE FROM someTable
WHERE ISNUMERIC(someField) = 1
END
</code></pre>
<p>I've got a table, someTable, and I'm trying to prevent people from inserting bad records. For the purpose of this question, a bad record has a field "someField" that is all numeric.</p>
<p>Of course, the right way to do this is NOT with a trigger, but I don't control the source code... just the SQL database. So I can't really prevent the insertion of the bad row, but I can delete it right away, which is good enough for my needs.</p>
<p>The trigger works, with one problem... when it fires, it never seems to delete the just-inserted bad record... it deletes any OLD bad records, but it doesn't delete the just-inserted bad record. So there's often one bad record floating around that isn't deleted until somebody else comes along and does another INSERT.</p>
<p>Is this a problem in my understanding of triggers? Are newly-inserted rows not yet committed while the trigger is running?</p>
http://stackoverflow.com/questions/405288/sql-server-after-insert-trigger-doesnt-see-the-just-inserted-row/405295#40529517Answer by ConcernedOfTunbridgeWells for SQL Server "AFTER INSERT" trigger doesn't see the just-inserted rowConcernedOfTunbridgeWells2009-01-01T18:52:50Z2009-01-03T00:10:11Z<p>Triggers cannot modify the changed data (inserted or deleted) otherwise you could get infinite recursion as the changes invoked the trigger again. One option would be for the trigger to roll back the transaction.</p>
<p><strong>Edit:</strong> The reason for this is that the standard for SQL is that inserted and deleted rows cannot be modified by the trigger. The underlying reason for is that the modifications could cause infinite recursion. In the general case, this evaluation could involve multiple triggers in a mutually recursive cascade. Having a system intelligently decide whether to allow such updates is computationally intractable, essentially a variation on the <a href="http://en.wikipedia.org/wiki/Halting_problem" rel="nofollow">halting problem.</a> </p>
<p>The accepted solution to this is not to permit the trigger to alter the changing data, although it can roll back the transaction. </p>
http://stackoverflow.com/questions/405288/sql-server-after-insert-trigger-doesnt-see-the-just-inserted-row/405305#40530510Answer by Dmitry Khalatov for SQL Server "AFTER INSERT" trigger doesn't see the just-inserted rowDmitry Khalatov2009-01-01T18:57:46Z2009-01-01T20:13:27Z<p>I think you can use CHECK constraint - it is exactly what it was invented for.</p>
<pre><code>ALTER TABLE someTable
ADD CONSTRAINT someField_check CHECK (ISNUMERIC(someField) = 1) ;
</code></pre>
<p>My previous answer (also right by may be a bit overkill):</p>
<p>I think the right way is to use INSTEAD OF trigger to prevent the wrong data from being inserted (rather than deleting it post-factum)</p>
http://stackoverflow.com/questions/405288/sql-server-after-insert-trigger-doesnt-see-the-just-inserted-row/405323#4053233Answer by BenAlabaster for SQL Server "AFTER INSERT" trigger doesn't see the just-inserted rowBenAlabaster2009-01-01T19:08:47Z2009-01-01T19:24:21Z<p>I found this reference:</p>
<pre><code>create trigger myTrigger
on SomeTable
for insert
as
if (select count(*)
from SomeTable, inserted
where IsNumeric(SomeField) = 1) <> 0
/* Cancel the insert and print a message.*/
begin
rollback transaction
print "You can't do that!"
end
/* Otherwise, allow it. */
else
print "Added successfully."
</code></pre>
<p>I haven't tested it, but logically it looks like it should dp what you're after...rather than deleting the inserted data, prevent the insertion completely, thus not requiring you to have to undo the insert. It should perform better and should therefore ultimately handle a higher load with more ease.</p>
<p>Edit: Of course, there <em>is</em> the potential that if the insert happened inside of an otherwise valid transaction that the wole transaction could be rolled back so you would need to take that scenario into account and determine if the insertion of an invalid data row would constitute a completely invalid transaction...</p>
http://stackoverflow.com/questions/405288/sql-server-after-insert-trigger-doesnt-see-the-just-inserted-row/405332#4053322Answer by Jon Skeet for SQL Server "AFTER INSERT" trigger doesn't see the just-inserted rowJon Skeet2009-01-01T19:17:31Z2009-01-01T19:17:31Z<p>From the <a href="http://msdn.microsoft.com/en-us/library/aa258254.aspx" rel="nofollow">CREATE TRIGGER</a> documentation:</p>
<blockquote>
<p><strong>deleted</strong> and <strong>inserted</strong> are logical (conceptual) tables. They are
structurally similar to the table on
which the trigger is defined, that is,
the table on which the user action is
attempted, and hold the old values or
new values of the rows that may be
changed by the user action. For
example, to retrieve all values in the
deleted table, use: <code>SELECT * FROM deleted</code></p>
</blockquote>
<p>So that at least gives you a way of seeing the new data.</p>
<p>I can't see anything in the docs which specifies that you won't see the inserted data when querying the normal table though...</p>
http://stackoverflow.com/questions/405288/sql-server-after-insert-trigger-doesnt-see-the-just-inserted-row/405337#4053370Answer by le dorfier for SQL Server "AFTER INSERT" trigger doesn't see the just-inserted rowle dorfier2009-01-01T19:20:52Z2009-01-05T20:32:29Z<p>The techniques outlined above describe your options pretty well. But what are the users seeing? I can't imagine how a basic conflict like this between you and whoever is responsible for the software can't end up in confusion and antagonism with the users.</p>
<p>I'd do everything I could to find some other way out of the impasse - because other people could easily see any change you make as escalating the problem.</p>
<p>EDIT:</p>
<p>I'll score my first "undelete" and admit to posting the above when this question first appeared. I of course chickened out when I saw that it was from JOEL SPOLSKY. But it looks like it landed somewhere near. Don't need votes, but I'll put it on the record.</p>
<p>IME, triggers are so seldom the right answer for anything other than fine-grained integrity constraints outside the realm of business rules.</p>
http://stackoverflow.com/questions/405288/sql-server-after-insert-trigger-doesnt-see-the-just-inserted-row/405403#40540318Answer by Bill Karwin for SQL Server "AFTER INSERT" trigger doesn't see the just-inserted rowBill Karwin2009-01-01T20:04:32Z2009-01-02T21:42:33Z<p>You can reverse the logic. Instead of deleting an invalid row after it has been inserted, write an <code>INSTEAD OF</code> trigger to insert <em>only</em> if you verify the row is valid.</p>
<pre><code>CREATE TRIGGER mytrigger ON sometable
INSTEAD OF INSERT
AS BEGIN
DECLARE @isnum TINYINT;
SELECT @isnum = ISNUMERIC(somefield) FROM inserted;
IF (@isnum = 1)
INSERT INTO sometable SELECT * FROM inserted;
ELSE
RAISERROR('somefield must be numeric', 16, 1)
WITH SETERROR;
END
</code></pre>
<p>If your application doesn't want to handle errors (as Joel says is the case in his app), then don't <code>RAISERROR</code>. Just make the trigger silently <em>not</em> do an insert that isn't valid.</p>
<p>I ran this on SQL Server Express 2005 and it works. Note that <code>INSTEAD OF</code> triggers <em>do not</em> cause recursion if you insert into the same table for which the trigger is defined.</p>
http://stackoverflow.com/questions/405288/sql-server-after-insert-trigger-doesnt-see-the-just-inserted-row/413769#4137690Answer by SqlACID for SQL Server "AFTER INSERT" trigger doesn't see the just-inserted rowSqlACID2009-01-05T16:57:58Z2009-01-05T16:57:58Z<p>Is it possible the INSERT is valid, but that a separate UPDATE is done afterwards that is invalid but wouldn't fire the trigger?</p>
http://stackoverflow.com/questions/405288/sql-server-after-insert-trigger-doesnt-see-the-just-inserted-row/469297#46929711Answer by Brent Ozar for SQL Server "AFTER INSERT" trigger doesn't see the just-inserted rowBrent Ozar2009-01-22T14:20:51Z2009-01-22T14:20:51Z<p>Here's my modified version of Bill's code:</p>
<pre><code>CREATE TRIGGER mytrigger ON sometable
INSTEAD OF INSERT
AS BEGIN
INSERT INTO sometable SELECT * FROM inserted WHERE ISNUMERIC(somefield) = 1 FROM inserted;
INSERT INTO sometableRejects SELECT * FROM inserted WHERE ISNUMERIC(somefield) = 0 FROM inserted;
END
</code></pre>
<p>This lets the insert always succeed, and any bogus records get thrown into your sometableRejects where you can handle them later. It's important to make your rejects table use nvarchar fields for everything - not ints, tinyints, etc - because if they're getting rejected, it's because the data isn't what you expected it to be.</p>
<p>This also solves the multiple-record insert problem, which will cause Bill's trigger to fail. If you insert ten records simultaneously (like if you do a select-insert-into) and just one of them is bogus, Bill's trigger would have flagged all of them as bad. This handles any number of good and bad records.</p>
<p>I used this trick on a data warehousing project where the inserting application had no idea whether the business logic was any good, and we did the business logic in triggers instead. Truly nasty for performance, but if you can't let the insert fail, it does work.</p>
http://stackoverflow.com/questions/405288/sql-server-after-insert-trigger-doesnt-see-the-just-inserted-row/475606#4756063Answer by Mark Brackett for SQL Server "AFTER INSERT" trigger doesn't see the just-inserted rowMark Brackett2009-01-24T06:08:53Z2009-01-26T22:22:45Z<p>UPDATE: DELETE from a trigger works on both MSSql 7 and MSSql 2008.</p>
<p>I'm no relational guru, nor a SQL standards wonk. However - contrary to the accepted answer - MSSQL deals just fine with both r<a href="http://msdn.microsoft.com/en-us/library/aa258254(SQL.80).aspx" rel="nofollow">ecursive and nested trigger evaluation</a>. I don't know about other RDBMSs.</p>
<p>The relevant options are <a href="http://www.devx.com/tips/Tip/30031" rel="nofollow">'recursive triggers' and 'nested triggers'</a>. Nested triggers are limited to 32 levels, and default to 1. Recursive triggers are off by default, and there's no talk of a limit - but frankly, I've never turned them on, so I don't know what happens with the inevitable stack overflow. I suspect MSSQL would just kill your spid (or there is a recursive limit).</p>
<p>Of course, that just shows that the accepted answer has the wrong <em>reason</em>, not that it's incorrect. However, prior to INSTEAD OF triggers, I recall writing ON INSERT triggers that would merrily UPDATE the just inserted rows. This all worked fine, and as expected.</p>
<p>A quick test of DELETEing the just inserted row also works:</p>
<pre><code> CREATE TABLE Test ( Id int IDENTITY(1,1), Column1 varchar(10) )
GO
CREATE TRIGGER trTest ON Test
FOR INSERT
AS
SET NOCOUNT ON
DELETE FROM Test WHERE Column1 = 'ABCDEF'
GO
INSERT INTO Test (Column1) VALUES ('ABCDEF')
--SCOPE_IDENTITY() should be the same, but doesn't exist in SQL 7
PRINT @@IDENTITY --Will print 1. Run it again, and it'll print 2, 3, etc.
GO
SELECT * FROM Test --No rows
GO
</code></pre>
<p>You have something else going on here.</p>
http://stackoverflow.com/questions/405288/sql-server-after-insert-trigger-doesnt-see-the-just-inserted-row/876034#8760340Answer by Yishai for SQL Server "AFTER INSERT" trigger doesn't see the just-inserted rowYishai2009-05-18T02:36:13Z2009-05-18T02:36:13Z<p>MS-SQL has a setting to prevent recursive trigger firing. This is confirgured via the sp_configure stored proceedure, where you can turn recursive or nested triggers on or off.</p>
<p>In this case, it would be possible, if you turn off recursive triggers to link the record from the inserted table via the primary key, and make changes to the record.</p>
<p>In the specific case in the question, it is not really a problem, because the result is to delete the record, which won't refire this particular trigger, but in general that could be a valid approach. We implemented optimistic concurrency this way.</p>
<p>The code for your trigger that could be used in this way would be:</p>
<pre><code>ALTER TRIGGER myTrigger
ON someTable
AFTER INSERT
AS BEGIN
DELETE FROM someTable
INNER JOIN inserted on inserted.primarykey = someTable.primarykey
WHERE ISNUMERIC(inserted.someField) = 1
END
</code></pre>