vote up 2 vote down star

Let's say I have a simple stored procedure that looks like this (note: this is just an example, not a practical procedure):

CREATE PROCEDURE incrementCounter AS

DECLARE current int
SET current = (select CounterColumn from MyTable) + 1

UPDATE
    MyTable
SET
    CounterColumn = current
GO

We're assuming I have a table called 'myTable' that contains one row, with the 'CounterColumn' containing our current count.

My question is, can this stored procedure be executed multiple times, at the same time?

i.e. is this possible:

I call 'incrementCounter' twice. Call A gets to the point where it sets the 'current' variable (let's say it is 5). Call B gets to the point where it sets the 'current' variable (which would also be 5). Call A finishes executing, then Call B finishes. In the end, the table should contain the value of 6, but instead contains 5 due to the overlap of execution

flag

3 Answers

vote up 6 vote down check

This is for SQL Server.

Each statement is atomic, but if you want the stored procedure to be atomic (or any sequence of statements in general), you need to explicitly surround the statements with

BEGIN TRANSACTION
Statement ...
Statement ...
COMMIT TRANSACTION

(It's common to use BEGIN TRAN and END TRAN for short.)

Contrary to a popular misconception, this will work in your case with default transaction level settings.

link|flag
vote up 1 vote down

I do believe that your situation would be possible. I'd personally wrap that in a transaction to be on the safe side, given that you have multiple steps and possible simultaneous execution. A nice, short way to do it would be:

CREATE PROCEDURE incrementCounter AS

BEGIN TRANSACTION xact_Increment
SET XACT_ABORT ON

DECLARE current int
SET current = (select CounterColumn from MyTable) + 1

UPDATE
    MyTable
SET
    CounterColumn = current
GO

COMMIT TRANSACTION xact_Increment
link|flag
vote up 5 vote down

In addition to placing the code between a BEGIN TRANSACTION and END TRANSACTION, you might want to ensure that your transaction isolation level is set correctly. In this case, you want to ensure that, once the value of CounterColumn has been read by the first process, it can't be read by the second process until the first one has updated it and then commited the transaction (or rolled it back). This will necessitate that you have an isolation level of SERIALIZABLE. You are not protected unless you do that.

SET TRANSACTION ISOLATION LEVEL SERIALIZABLE

I believe the default level is READ COMMITTED, which is no good in the case of the example you provided.

link|flag

Your Answer

Get an OpenID
or

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