Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I don't use Stored procedures very often and was wondering if it made sense to wrap my select queries in a transaction.

My procedure has three simple select queries, two of which use the returned value of the first.

share|improve this question

2 Answers

up vote 6 down vote accepted

In a highly concurrent application it could (theoretically) happen that data you've read in the first select is modified before the other selects are executed.

If that is a situation that could occur in your application you should use a transaction to wrap your selects. Make sure you pick the correct isolation level though, not all transaction types guarantee consistent reads.

Update : You may also find this article on concurrent update/insert solutions (aka upsert) interesting. It puts several common methods of upsert to the test to see what method actually guarantees data is not modified between a select and the next statement. The results are, well, shocking I'd say.

share|improve this answer

Transactions are usually used when you have insert, update or delete statements and you want to have the atomic behavior, that is, either commit every thing or commit nothing. However, you could use transaction for select statements to make sure nobody else could update the table of interest while the bunch of your select queries are executing.

Have a look at this msdn post.

share|improve this answer
1  
Did you read your link? An application can perform actions such as acquiring locks to protect the transaction isolation level of SELECT statements This is a good use case for that since the OP stated they use the results of one select as parameters in subsequent queries. – JNK May 12 '11 at 18:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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