vote up 5 vote down star
4

I'd like to update a set of rows based on a simple criteria and get the list of PKs that were changed. I thought I could just do something like this but am worried about possible concurrency problems:

SELECT Id FROM Table1 WHERE AlertDate IS NULL;
UPDATE Table1 SET AlertDate = getutcdate() WHERE AlertDate IS NULL;

If that is wrapped in a transaction are there any concurrency issues that can occur? Or is there a better way to do this?

flag

7 Answers

vote up 21 vote down check

Consider looking at the OUTPUT clause capability of UPDATE.

http://msdn.microsoft.com/en-us/library/ms177564(SQL.90).aspx

link|flag
maybe somebody with edit abilities can change this answer so the link is actually a link? good answer. – Sailing Judo Jan 30 at 22:35
Woah. I had no idea you could do that! That greatly simplifies a number of tedious things I find myself doing. Many thanks indeed - off ot read-up on it some more and look for the 'catch'. :-) – robsoft Jan 31 at 19:56
vote up 7 vote down

It'd be easier to do your UPDATE first and then run 'SELECT ID FROM INSERTED'.

Take a look at SQL Tips for more info and examples.

link|flag
+1 - this is a nice feature – Optimal Solutions Jan 30 at 22:29
vote up 2 vote down

Perhaps something more like this?

declare @UpdateTime datetime

set @UpdateTime = getutcdate()

update Table1 set AlertDate = @UpdateTime where AlertDate is null

select ID from Table1 where AlertDate = @UpdateTime
link|flag
This has the nice advantage that, even if you don't do this within a transaction, it will be very difficult that you'd get results some other process altered. – Joe Pineda Jan 31 at 5:09
vote up 2 vote down

One way to handle this is to do it in a transaction, and make your SELECT query take an update lock on the rows selected until the transaction completes.

BEGIN TRAN

SELECT Id FROM Table1 WITH (UPDLOCK)
WHERE AlertDate IS NULL;

UPDATE Table1 SET AlertDate = getutcdate() 
WHERE AlertDate IS NULL;

COMMIT TRAN

This eliminates the possibility that a concurrent client updates the rows selected in the moment between your SELECT and your UPDATE.

When you commit the transaction, the update locks will be released.

Another way to handle this is to declare a cursor for your SELECT with the FOR UPDATE option. Then UPDATE WHERE CURRENT OF CURSOR. The following is not tested, but should give you the basic idea:

DECLARE cur1 CURSOR FOR
  SELECT AlertDate FROM Table1 
  WHERE AlertDate IS NULL
  FOR UPDATE;

DECLARE @UpdateTime DATETIME

SET @UpdateTime = GETUTCDATE()

OPEN cur1;

FETCH NEXT FROM cur1;

WHILE @@FETCH_STATUS = 0
BEGIN

  UPDATE Table1 AlertDate = @UpdateTime
  WHERE CURRENT OF cur1;

  FETCH NEXT FROM cur1;

END
link|flag
+1 for UPDLOCK, its a correct solution to this problem and in short transactions will not lead to deadlocks – Sam Saffron Jan 31 at 23:49
Will this result in all rows getting the same datetime value (as you would in a single SQL call)? If not, you should get the time before the loop into a variable and just set AltertDate to the variable. If it's an issue, please edit this in. – IronGoofy Feb 1 at 17:18
vote up 1 vote down

in SQL 2008 a new TSQL statement "MERGE" is introduced which performs insert, update, or delete operations on a target table based on the results of a join with a source table. You can synchronize two tables by inserting, updating, or deleting rows in one table based on differences found in the other table.

http://blogs.msdn.com/ajaiman/archive/2008/06/25/tsql-merge-statement-sql-2008.aspx http://msdn.microsoft.com/en-us/library/bb510625.aspx

link|flag
vote up 0 vote down

if it's inside the transaction, the database locking system will take care of concurrency issues. of course, if you use one (the mssql default is that it uses lock, so it states if you don't override that)

link|flag
vote up 0 vote down

Edit: my bad, you wanted the select to show results after the update, not update from a select.

Have you tried a sub-select?

SQL> update mytable set mydate = sysdate where mydate in (select mydate from mytable where mydate is null);

link|flag

Your Answer

Get an OpenID
or

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