Just a learner
Just a learner

Reputation: 28572

What's the point to enclose select statements in a transaction?

What's the point to enclose select statements in a transaction? I think select statements are just "GET" data from the database, they don't have chance to rollback something, because you just can't change the data. So, does that to say we never need put select statements in a transaction? Am I right?

Thanks.

Upvotes: 37

Views: 13526

Answers (7)

Andomar
Andomar

Reputation: 238086

You're right: at the standard isolation level, read committed, you do not need to wrap select statements in transactions. Select statements will be protected from dirty reads whether you wrap them in a transaction or not.

connection 1:                          connection 2:

                                       begin transaction
                                       update user set name = 'Bill' where id = 1
select name from users where id = 1
                                       rollback transaction

The select statement will not read the rolled-back update: it doesn't matter that they are not wrapped in a transaction.

If you need repeatable reads, then wrapping selects in a default transaction doesn't help:

connection 1:                          connection 2:

begin transaction
select name from users where id = 1
                                       update user set name = 'Bill' where id = 1
select name from users where id = 1
commit transaction

The begin and commit statements won't help here: the second select may read the old name, or it may read the new name.

However, if you run at a higher isolation level, like serializable or repeatable read, the group will be protected from non-repeatable reads:

connection 1:                          connection 2:

set transaction isolation level
    repeatable read
begin transaction
select name from users where id = 1
                                       update user set name = 'Bill' where id = 1
select name from users where id = 1              |
commit transaction                               |
                                                 |--> executed here

In this scenario, the update will block until the first transaction is complete.

Higher isolation levels are rarely used because they lower the number of people that can work in the database at the same time. At the highest level, serializable, a reporting query halts any update activity.

Upvotes: 41

Randy Levy
Randy Levy

Reputation: 22655

Another reason to use transactions with a select:

It's possible at some point you may want to invoke your select method from other methods that are participating in a transaction and you want the select to participate in the current transaction. If you have a consistent design where all database actions are performed in a transaction then callers of any method know that it will participate in their transaction.

For a small up front development cost, this could help avoid some fairly large changes later trying to shoehorn transactions in if/when requirements change or new requirements are added.

Upvotes: 3

dkretz
dkretz

Reputation: 37655

A single SELECT statement is atomic to start with - enclosing it in a transaction is redundant. If there are multiple SELECT statements, you are guaranteed that no one changed anything affecting any of them until all of them complete.

Upvotes: 5

janm
janm

Reputation: 18339

No.

A transaction gives you a consistent view of the database.

If you want your selects to return the same results when you repeat them, a transaction can provide that.

Upvotes: 3

jmoreno
jmoreno

Reputation: 13561

If you're sure that all that is happening is a SELECT, then it doesn't need to be in a transaction. Are you 100% sure that now and forever more it's going to be just a SELECT?

Upvotes: 1

krock
krock

Reputation: 29619

You may be doing other updates/inserts during this transaction. If your code accessing the database is written in a reusable fashion then you may not whether selects are the only thing happening in the transaction.

Your select statements may want to be consistent for the duration of the transaction, as well as being consistent with data changes happening in other transactions. You will want to set some sort of isolation level in your system to prevent dirty reads (reading uncommitted changes in another transaction) or phantom reads (reading committed changes in another transaction).

Needless to say, you will be better served by using transactions.

Upvotes: 8

dan04
dan04

Reputation: 90995

You might not be changing the data, but some other database connection could.

Upvotes: 3

Related Questions