Insert Update stored proc on SQL Server - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T22:53:33Zhttp://stackoverflow.com/feeds/question/13540http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server30Insert Update stored proc on SQL ServerGuy2008-08-17T06:48:50Z2009-10-07T04:43:16Z
<p>I've written a stored proc that will do an update if a record exists, otherwise it will do an insert. It looks something like this:</p>
<pre><code>update myTable set Col1=@col1, Col2=@col2 where ID=@ID
if @@rowcount = 0
insert into myTable (Col1, Col2) values (@col1, @col2)
</code></pre>
<p>My logic behind writing it in this way is that the update will perform an implicit select using the where clause and if that returns 0 then the insert will take place.</p>
<p>The alternative to doing it this way would be to do a select and then based on the number of rows returned either do an update or insert. This I considered inefficient because if you are to do an update it will cause 2 selects (the first explicit select call and the second implicit in the where of the update). If the proc were to do an insert then there'd be no difference in efficiency.</p>
<p>Is my logic sound here?
Is this how you would combine an insert and update into a stored proc?</p>
http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/13554#1355418Answer by binOr for Insert Update stored proc on SQL ServerbinOr2008-08-17T07:22:43Z2009-01-31T22:27:36Z<p>Your assumption is right, this is the optimal way to do it and it's called <a href="http://en.wikipedia.org/wiki/Upsert" rel="nofollow">upsert/merge</a>.</p>
<p><a href="http://www.sqlservercentral.com/articles/T-SQL/61773/" rel="nofollow">Importance of UPSERT - from sqlservercentral.com</a>: </p>
<blockquote>
<p>For every update in the case mentioned above we are removing one
additional read from the table if we
use the UPSERT instead of EXISTS.
Unfortunately for an Insert, both the
UPSERT and IF EXISTS methods use the
same number of reads on the table.
Therefore the check for existence
should only be done when there is a
very valid reason to justify the
additional I/O. The optimized way to
do things is to make sure that you
have little reads as possible on the
DB.</p>
<p>The best strategy is to attempt the
update. If no rows are affected by the
update then insert. In most
circumstances, the row will already
exist and only one I/O will be
required.</p>
</blockquote>
<p><strong>Edit</strong>:
Please check out <a href="http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/193876#193876">this answer</a> and the linked blog post to learn about the problems with this pattern and how to make it work safe.</p>
http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/13555#135555Answer by Jon Galloway for Insert Update stored proc on SQL ServerJon Galloway2008-08-17T07:24:48Z2008-08-17T07:24:48Z<p>MERGE is one of the new features in SQL Server 2008, by the way.</p>
http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/13592#135920Answer by Bernard Dy for Insert Update stored proc on SQL ServerBernard Dy2008-08-17T11:50:23Z2008-08-17T11:50:23Z<p>Yes, MERGE is what you are trying to do. Jon mentioned above its availability in SQL Server 2008. It's also been supported in Oracle since version Oracle9i.</p>
http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/13818#138182Answer by Guy for Insert Update stored proc on SQL ServerGuy2008-08-17T18:40:16Z2008-08-17T18:40:16Z<p>Today I learned my first slang SQL expression "UPSERT" - very cool - thanks binOr!</p>
<p>Also thanks for the heads-up on MERGE.</p>
http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/25318#253187Answer by Dima Malenko for Insert Update stored proc on SQL ServerDima Malenko2008-08-24T20:21:28Z2008-08-24T20:21:28Z<p>If to be used with SQL Server 2000/2005 the original code needs to be enclosed in transaction to make sure that data remain consistent in concurrent scenario.</p>
<pre><code>BEGIN TRANSACTION Upsert
update myTable set Col1=@col1, Col2=@col2 where ID=@ID
if @@rowcount = 0
insert into myTable (Col1, Col2) values (@col1, @col2)
COMMIT TRANSACTION Upsert
</code></pre>
<p>This will incur additional performance cost, but will ensure data integrity.</p>
<p>Add, as already suggested, MERGE should be used where available.</p>
http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/35364#353643Answer by Natron for Insert Update stored proc on SQL ServerNatron2008-08-29T21:41:33Z2008-08-29T21:41:33Z<p>Big fan of the UPSERT, really cuts down on the code to manage. Here is another way I do it: One of the input parameters is ID, if the ID is NULL or 0, you know it's an INSERT, otherwise it's an update. Assumes the application knows if there is an ID, so wont work in all situations, but will cut the executes in half if you do.</p>
http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/36163#361630Answer by Nathan for Insert Update stored proc on SQL ServerNathan2008-08-30T17:15:08Z2008-08-30T17:15:08Z<p>As dmytro mentioned, this needs to be in a transaction to maintain integrity.</p>
http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/36172#361720Answer by John Dyer for Insert Update stored proc on SQL ServerJohn Dyer2008-08-30T17:21:34Z2008-08-30T17:21:34Z<p>Isn't this just one of those interesting SQL tricks?
Why doesn't your app know if it is inserting or updating?
Doesn't your table have a primary key column and wouldn't that be the indicator of what do do here?</p>
http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/39529#395291Answer by Kevin Fairchild for Insert Update stored proc on SQL ServerKevin Fairchild2008-09-02T13:37:56Z2008-09-02T13:37:56Z<p>Your logic seems sound, but you might want to consider adding some code to prevent the insert if you had passed in a specific primary key.</p>
<p>Otherwise, if you're always doing an insert if the update didn't affect any records, what happens when someone deletes the record before you "UPSERT" runs? Now the record you were trying to update doesn't exist, so it'll create a record instead. That probably isn't the behavior you were looking for.</p>
<p>-- Kevin Fairchild</p>
http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/40476#404762Answer by Simon Munro for Insert Update stored proc on SQL ServerSimon Munro2008-09-02T20:13:39Z2008-09-02T20:13:39Z<p>If you are not doing a merge in SQL 2008 you must change it to:</p>
<p>if @@rowcount = 0 and @@error=0</p>
<p>otherwise if the update fails for some reason then it will try and to an insert afterwards because the rowcount on a failed statement is 0</p>
http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/80790#807904Answer by Tomas Tintera for Insert Update stored proc on SQL ServerTomas Tintera2008-09-17T07:26:40Z2008-09-17T07:26:40Z<p>You not only need to run it in transaction, it also needs high isolation level. I fact default isolation level is Read Commited and this code need Serializable. </p>
<pre><code>SET transaction isolation level SERIALIZABLE
BEGIN TRANSACTION Upsert
UPDATE myTable set Col1=@col1, Col2=@col2 where ID=@ID
if @@rowcount = 0
begin
INSERT into myTable (ID, Col1, Col2) values (@ID @col1, @col2)
end
COMMIT TRANSACTION Upsert
</code></pre>
<p>Mayne adding also the @@error check and rollback could be good idea.</p>
http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/174073#1740730Answer by Mladen for Insert Update stored proc on SQL ServerMladen2008-10-06T12:26:53Z2008-10-06T12:26:53Z<p>here's a post that covers this from the locking perspective:
<a href="http://weblogs.sqlteam.com/mladenp/archive/2007/07/30/60273.aspx" rel="nofollow">http://weblogs.sqlteam.com/mladenp/archive/2007/07/30/60273.aspx</a></p>
http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/193876#19387610Answer by Sam Saffron for Insert Update stored proc on SQL ServerSam Saffron2008-10-11T09:04:47Z2008-10-11T09:04:47Z<p>Please read the <a href="http://www.samsaffron.com/blog/archive/2007/04/04/14.aspx" rel="nofollow">post on my blog</a> for a good, safe pattern you can use. There are a lot of considerations, and the accepted answer on this question is far from safe. </p>
<p>For a quick answer try the following pattern. It will work fine on SQL 2000 and above. SQL 2005 gives you error handling which opens up other options and SQL 2008 gives you a MERGE command. </p>
<pre><code>begin tran
update t with (serializable)
set hitCount = hitCount + 1
where pk = @id
if @@rowcount = 0
begin
insert t (pk, hitCount)
values (@id,1)
end
commit tran
</code></pre>