Database Concurrency Needed when ADDING rows - Best Practice? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T06:27:58Zhttp://stackoverflow.com/feeds/question/997363http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/997363/database-concurrency-needed-when-adding-rows-best-practice2Database Concurrency Needed when ADDING rows - Best Practice?Jason Young2009-06-15T17:36:27Z2009-06-16T11:19:41Z
<p>I'm working with an application that adds a new row to the database, based on the last row meeting a certain criteria. Is there a standard pattern for dealing with this type of problem, or do I simply need to lock the table?</p>
<p>Here is an over-simplified visualization:</p>
<pre><code>A1
A2
A3
B1
B2
</code></pre>
<p>Using the visualization above, a web page loads up the highest "B" value, which is "2". Then, after some time, it wants to <strong>insert</strong> B3, the next record in the series. However, it has to check to make sure that someone else didn't do the same thing.</p>
<p>Like I mentioned, I know that I can read the expected value within a transaction, or I could lock the table, or possibly even the last row. What I'm asking is if there is what the recommended strategy is.</p>
http://stackoverflow.com/questions/997363/database-concurrency-needed-when-adding-rows-best-practice/997372#9973721Answer by Quassnoi for Database Concurrency Needed when ADDING rows - Best Practice?Quassnoi2009-06-15T17:38:07Z2009-06-16T11:19:41Z<p>See this entry in my blog on how to do this using recursive <code>CTE</code>'s and a single <code>IDENTITY</code>:</p>
<ul>
<li><a href="http://explainextended.com/2009/06/15/group-based-identity/" rel="nofollow"><strong>Group base identity</strong></a></li>
</ul>
<p><strong>Update:</strong></p>
<p>If the problem is building the equipment to the next step, then you probably better use absolute value instead of relative.</p>
<p>Remember the previous value of the step in the variable (in the page itself or on server side), and just update it with the new value of the variable.</p>
<p>Instead of this:</p>
<pre><code>UPDATE mytable
SET step = step + 1
</code></pre>
<p>use this:</p>
<pre><code>SET @nextstep = 2
UPDATE mytable
SET step = @nextstep
</code></pre>
<p>You may also add an autoincremented <code>last_update</code> field to the column to make sure you're updating a column not been updated since your page has loaded:</p>
<pre><code>SELECT last_update
INTO @lastupdate
FROM mytable
WHERE item_id = @id
UPDATE mytable
SET step = @nextstep
WHERE item_id = @id
AND last_update = @lastupdate
</code></pre>
<p><strong>Update 2</strong>:</p>
<p>If you are using a linked list of states (i. e. you don't update, but insert new states), then just mark the column <code>IDENTITY</code> and insert the <code>ID</code> of the previous state:</p>
<pre><code>item_id step_id prev_step_id
1 10232 0
1 12123 10232
</code></pre>
<p>, make <code>step_id</code> and <code>prev_step_id</code> unique, and query like this:</p>
<pre><code>WITH q (item_id, step_id, step_no) AS
(
SELECT item_id, step_id, 1
FROM mytable
WHERE item_id = 1
AND prev_step_id = 0
UNION ALL
SELECT q.item_id, m.step_id, q.step_no + 1
FROM q
JOIN mytable m
ON m.item_id = q.item_id
m.prev_step_id = q.step_id
)
SELECT *
FROM q
</code></pre>
<p>If two people want to insert two records, then the <code>UNIQUE</code> constraint on <code>prev_step_id</code> wil fire and the last insert will fail.</p>
http://stackoverflow.com/questions/997363/database-concurrency-needed-when-adding-rows-best-practice/997394#9973940Answer by AlexKuznetsov for Database Concurrency Needed when ADDING rows - Best Practice?AlexKuznetsov2009-06-15T17:42:56Z2009-06-15T17:42:56Z<p>This is a perfect case to use a queue. Try out Message Broker.</p>
http://stackoverflow.com/questions/997363/database-concurrency-needed-when-adding-rows-best-practice/997407#997407-1Answer by Matt Rogish for Database Concurrency Needed when ADDING rows - Best Practice?Matt Rogish2009-06-15T17:46:09Z2009-06-15T17:59:16Z<pre><code>UPDATE yourtable
SET location = 'B3'
WHERE primary-key = 1231421
AND location = 'B2'
</code></pre>
<p>If someone's already moved it out of B2, then nothing will happen. This seems better than simply blindly incrementing the location; the user wanted it to go from B2 to B3, not push it one forward.</p>
<p>Alright, given the new row requirement:</p>
<pre><code>INSERT INTO yourtable ( item, location ) VALUES( 123, 'B3' )
WHERE NOT EXISTS( SELECT * FROM yourtable WHERE item = 123 AND location = B3 )
</code></pre>
<p>let the database do the work for you.</p>
http://stackoverflow.com/questions/997363/database-concurrency-needed-when-adding-rows-best-practice/997426#997426-1Answer by Mladen Prajdic for Database Concurrency Needed when ADDING rows - Best Practice?Mladen Prajdic2009-06-15T17:50:28Z2009-06-15T17:50:28Z<p>the usual way to do this is to have a rowversion type column and check the row value with the value incoming from the client.
if the row in the table has been updated the rownumbers won't match.
index the rowversion column and it'll fly.</p>
http://stackoverflow.com/questions/997363/database-concurrency-needed-when-adding-rows-best-practice/997434#9974341Answer by Curt Sampson for Database Concurrency Needed when ADDING rows - Best Practice?Curt Sampson2009-06-15T17:52:52Z2009-06-15T17:52:52Z<p>This looks to me like a classic case of needing operator I always want: "ensure that a tuple satisfying these conditions exists, and give me the key."</p>
<p>In my case, it's usually a simple, "I have this credit card number and expiry date, what's the key for it?" I don't actually care if it's already in the DB or not (in fact, the application ought not to be able to tell, for security purposes) I just want the identifier for it if it is there, or I want it to be created if it's not, and get the new identifier for that creation.</p>
<p>As far as I can tell, with current DBMS technology, you need to lock the table, because you must make the decision whether to insert or not based on what's already there. I'd love to have a better solution to this, however.</p>
http://stackoverflow.com/questions/997363/database-concurrency-needed-when-adding-rows-best-practice/997436#9974360Answer by Joseph Kingry for Database Concurrency Needed when ADDING rows - Best Practice?Joseph Kingry2009-06-15T17:53:05Z2009-06-15T18:13:41Z<p>I know your given example is simplified, but to meet those requirements you could do the following. </p>
<p>Since the INSERT/SELECT is one statement, it's implicitly in a transaction. If you need to do something that you can't express relationally you'll need to wrap it in an explicit transaction.</p>
<p>Primary key ensures no concurrency issues beyond your given default transaction isolation. </p>
<pre><code>CREATE TABLE Sequence
(
[Name] char(1),
[Seq] int
PRIMARY KEY (Name, Seq)
)
GO
CREATE PROCEDURE Sequence_Insert
(
@name char(1)
)
AS
INSERT INTO Sequence(Name, Seq)
SELECT
@Name,
COALESCE(MAX(Seq),0) + 1
FROM
Sequence
WHERE
Name = @Name
GO
exec Sequence_Insert 'A'
exec Sequence_Insert 'A'
exec Sequence_Insert 'B'
exec Sequence_Insert 'A'
exec Sequence_Insert 'C'
GO
SELECT * FROM Sequence
</code></pre>
http://stackoverflow.com/questions/997363/database-concurrency-needed-when-adding-rows-best-practice/997439#9974390Answer by hainstech for Database Concurrency Needed when ADDING rows - Best Practice?hainstech2009-06-15T17:53:46Z2009-06-15T17:53:46Z<p>Just wrap it into the same statement. The first insert of new value (2) will succeed, the second will add zero rows.</p>
<pre><code>create table t1 (i int)
insert t1 values (1)
insert t1 (i)
select 2 where exists (select max(i) from t1 having max(i) = 1)
insert t1 (i)
select 2 where exists (select max(i) from t1 having max(i) = 1)
</code></pre>
http://stackoverflow.com/questions/997363/database-concurrency-needed-when-adding-rows-best-practice/997526#9975261Answer by le dorfier for Database Concurrency Needed when ADDING rows - Best Practice?le dorfier2009-06-15T18:14:02Z2009-06-15T18:21:34Z<p>Conceptually, if I understand the accumulation of clarifications, the situation is that you want to record that an item has entered a new state - a piece of equipment has reached a certain step. And you want to do this based on incrementing the step it is currently believed to be in.</p>
<p>I would restate this to perhaps be more manageable and unambiguous. Can you simply insert a record asserting that a machine is observed in a state, with a timestamp?</p>
<p>Deriving the current step from previous information (that may itself be imperfectly known) seems risky, especially if it's a simple iteration calculation that can occur from 0 to n times based on circumstances.</p>
<p>OTOH, if it's a timestamped observation of actual state, then it's self correcting (it doesn't matter what state you thought it was in before), and multiple assertions don't cause problems.</p>
<p>Can you reconstruct the logic this way based on the existing forms (or maybe a small modification of the form or the network confiration or whatever)? Is there user, or ip address, etc. associated with a given step of subset of steps? Are there associated transactions that are only valid if it's at a step or subset of steps?</p>
http://stackoverflow.com/questions/997363/database-concurrency-needed-when-adding-rows-best-practice/997837#9978370Answer by Remus Rusanu for Database Concurrency Needed when ADDING rows - Best Practice?Remus Rusanu2009-06-15T19:11:38Z2009-06-15T19:11:38Z<p>The proper strategy depends on what exactly are the actions that occur between reading B2 and inserting B3. These following points are rather theoretical and not practical T-SQL samples, but I gather that is the sense of your question.</p>
<ul>
<li>If this is a cheap action with disposable outcome then you can let every transaction do it, then the first one that inserts B3 succeeds and the rest fail with a duplicate key violation (unique constraint), recover from exception and resume as if nothing happened.</li>
<li>A relatively expensive operation with disposable outcome but unlikely to happen concurrently. Same as above, you will take the penalty of disposing the outcome of an 'expensive' operation, but this will happen seldom.</li>
<li>A non-disposable outcome that can be rolled back (can be embedded in your transaction or you can enroll into DTC) and is unlikely to happen concurrently. Same as above but enroll the 'operation' into your transaction (locally or DTC), on conflict you rollback and try again with the new value of the Bs sequence.</li>
<li>The outcome is non-disposable (the result of the 'operations' cannot be ignored, it must be recorded, eg. you recorded a financial transaction). In this case you must prevent concurrency and locking is the way to go. Table locks are always overkill, you should probably go with an <a href="http://msdn.microsoft.com/en-us/library/ms187373.aspx" rel="nofollow">UPDLOCK</a> on the lookup after 'B2'. Unfortunately transaction isolation levels are of no help here (on <em>all</em> levels two threads can both read 'B2' and plunge ahead, resulting, hopefully, in a deadlock at the insert time). If the 'operation' between reading B2 and inserting B3 is something as complex as returning the HTML to the user and waiting for the next POST then you probably won't be able to afford leaving such long lived U locks on real data and the best way is to device an application lock schema, using <a href="http://technet.microsoft.com/en-us/library/ms189823.aspx" rel="nofollow">sp_getapplock</a>.</li>
</ul>
http://stackoverflow.com/questions/997363/database-concurrency-needed-when-adding-rows-best-practice/1000562#10005620Answer by bortzmeyer for Database Concurrency Needed when ADDING rows - Best Practice?bortzmeyer2009-06-16T10:02:00Z2009-06-16T10:02:00Z<p>The recommanded SQL strategy is certainly to use <code>SELECT FOR UPDATE</code>. I'm suprised no one mentioned it. </p>
<pre>
SELECT id FROM tasks WHERE id = max(id) FOR UPDATE OF tasks;
</pre>
<p><code>SELECT FOR UPDATE</code> locks just exactly what you need to lock, so it is much simpler than manual locking.</p>