vote up 11 vote down star
2

Assume a table structure of MyTable(KEY, datafield1, datafield2...)

Often I want to either update an existing record, or insert a new record if it doesn't exist.

essentially if (key exists) Run Update command ELSE run insert command

What's the best performing way to write this?

flag

13 Answers

vote up 9 vote down check

Guys, don't forget about transactions. Performance is good, but simple (IF EXISTS..) approach is very dangerous.
When multiple threads will try to perform Insert-or-update you can easily get primary key violation.

Solutions provided by @Beau Crawford & @Esteban show general idea but error-prone.

To avoid deadlocks and PK violations you can use something like this:

begin tran
if exists (select * from table with (updlock,serializable) where key = @key)
begin
   update table set ...
   where key = @key
end
else
begin
   insert table (key, ...)
   values (@key, ...)
end
commit tran

or

begin tran
   update table with (serializable) set ...
   where kay = @key

   if @@rowcount = 0
   begin
	  insert table (key, ...) values (@key,..)
   end
commit tran
link|flag
Question asked for most performant solution rather than the safest. Whilst a transaction adds security to the process, it also adds an overhead. – Luke Sep 20 '08 at 15:17
1  
I bet you wouldn't care about performance when your application crashes – aku Sep 20 '08 at 15:20
Sure, but if we're going to start talking about application stability there's plenty of other things to think about as well. – Luke Sep 20 '08 at 15:26
Who cares about correctness when there is speed? – stefan.ciobaca Jan 29 at 22:42
vote up 25 vote down

Do an UPSERT:

UPDATE MyTable SET FieldA=@FieldA WHERE Key=@Key

IF @@ROWCOUNT = 0
   INSERT INTO MyTable (FieldA) VALUES (@FieldA)

http://en.wikipedia.org/wiki/Upsert

link|flag
1  
If 2 of these puppies run at the same time, you can get primary key violations or duplicate row – Sam Saffron Jan 29 at 23:12
vote up 9 vote down
IF EXISTS (SELECT * FROM [Table] WHERE ID = rowID)
UPDATE [Table] SET propertyOne = propOne, property2 . . .
ELSE
INSERT INTO [Table] (propOne, propTwo . . .)

Edit:

Alas, even to my own detriment, I must admit the solutions that do this w/o a select seem to be better since they accomplish the task with one less step.

link|flag
I still like this one better. The upsert seems more like programming by side effect, and I have never seen the piddly little clustered index seek of that initial select to cause performance problems in a real database. – Eric Z Beard Sep 21 '08 at 1:04
But this method allows for race conditions, unless you explicitly do some locking before the SELECT takes place. – Dave Costa Oct 9 '08 at 19:30
So does an upsert. – Erik Jan 30 at 21:38
vote up 6 vote down

If you want to UPSERT more than one record at a time you can use the ANSI SQL:2003 DML statement MERGE.

MERGE INTO table_name USING table_name ON (condition)
WHEN MATCHED THEN UPDATE SET column1 = value1 [, column2 = value2 ...]
WHEN NOT MATCHED THEN INSERT (column1 [, column2 ...]) VALUES (value1 [, value2 ...])

Check out Mimicking MERGE Statement in SQL Server 2005.

link|flag
In Oracle, issuing a MERGE statement I think locks the table. Does the same happen in SQL*Server? – Mike McAllister Sep 21 '08 at 1:29
vote up 5 vote down

In SQL 2008 you can use the MERGE statement

link|flag
vote up 2 vote down

See my detailed answer to a very similar previous question

@Beau Crawford's is a good way in SQL 2005 and below, though if you're granting rep it should go to the first guy to SO it. The only problem is that for inserts it's still two IO operations.

MS Sql2008 introduces merge from the SQL:2003 standard:

merge into tablename 
where idfield = 7
when matched then
    update
    set field1 = 'new value',
        field2 = 'different value',
        ...
when not matched then
    insert ( idfield, field1, field2, ... )
    values ( 7, 'value one', 'another value', ... )

Now it's really just one IO operation, but awful code :-(

link|flag
vote up 1 vote down

MS SQL Server 2008 introduces the MERGE statement, which I believe is part of the SQL:2003 standard. As many have shown it is not a big deal to handle one row cases, but when dealing with large datasets, one needs a cursor, with all the performance problems that come along. The MERGE statement will be much welcomed addition when dealing with large datasets.

link|flag
I have never needed to use a cursor to do this with large datasets. You just need an update that updates the records that match and an insert with a select instead of a values clause that left joins to the table. – HLGEM Apr 14 at 18:15
vote up 0 vote down

Do a select, if you get a result, update it, if not, create it.

link|flag
That's two calls to the database. – chris Sep 20 '08 at 15:04
I don't see a problem with that. – Clint Ecker Sep 20 '08 at 15:14
It's two calls to the DB that's the problem, you end doubling the number of roundtrips to the DB. If the app hits the db with lots of inserts/updates it'll hurt performance. UPSERT is a better strategy. – Kev Sep 20 '08 at 19:05
vote up 0 vote down

i found this code in the postgreSQL documentation.

BEGIN;
-- other operations
SAVEPOINT sp1;
INSERT INTO wines VALUES('Chateau Lafite 2003', '24');
-- Assume the above fails because of a unique key violation,
-- so now we issue these commands:
ROLLBACK TO sp1;
UPDATE wines SET stock = stock + 24 WHERE winename = 'Chateau Lafite 2003';
-- continue with other operations, and eventually
COMMIT;

i thought it was very valuable for PostgreSQL users

link|flag
vote up -1 vote down

Doing an if exists ... else ... involves doing two requests minimum (one to check, one to take action). The following approach requires only one where the record exists, two if an insert is required:

DECLARE @RowExists bit
SET @RowExists = 0
UPDATE MyTable SET DataField1 = 'xxx', @RowExists = 1 WHERE Key = 123
IF @RowExists = 0
  INSERT INTO MyTable (Key, DataField1) VALUES (123, 'xxx')
link|flag
vote up -1 vote down

I usually do what several of the other posters have said with regard to checking for it existing first and then doing whatever the correct path is. One thing you should remember when doing this is that the execution plan cached by sql could be nonoptimal for one path or the other. I believe the best way to do this is to call two different stored procedures.

FirstSP:
If Exists
   Call SecondSP (UpdateProc)
Else
   Call ThirdSP (InsertProc)

Now, I don't follow my own advice very often, so take it with a grain of salt.

link|flag
vote up -1 vote down

If you use ADO.NET, the DataAdapter handles this.

If you want to handle it yourself, this is the way:

Make sure there is a primary key constraint on your key column.

Then you:

  1. Do the update
  2. If the update fails because a record with the key already exists, do the insert. If the update does not fail, you are finished.

You can also do it the other way round, i.e. do the insert first, and do the update if the insert fails. Normally the first way is better, because updates are done more often than inserts.

link|flag

Your Answer

Get an OpenID
or

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