Controlling the locking and row versioning behavior of T-SQL statements issued by connection to SQL Server.
Transaction Levels:
- Read Committed
- Read Uncommitted
- Repeatable Read
- Serializations
- Specifies the statements can read rows that have been modified by the other transactions but not yet committed.
- Transactions are running at the Read uncommitted level do not issue shared locks to prevent other transactions from modifying data read by the current level.
- When the option is set it is possible to read the Uncommitted data modifications, which are called dirty reads.Values in the data can be changed and the rows can appear or disappear in the data set before the end of the transaction.
- The option has the same effect as setting No locks on all tables in all Select statements in the transaction.
Read Committed:
Specifies the statements can not read the data that has been modified but not committed by the other transactions. This prevents dirty reads by placing shared locks. But the data can be changed by the other users before the end of the transactions.
Repeatable Read:
- It specifies the statements can not read data that has been modified but not yet committed by the other transactions and that no other transactions can modify the data that has been read by the current transaction until the current transaction completes.
- Locks are places in all the data that is used in the query, preventing other users from the updating data.
- Other transactions can insert new rows that matches the search conditions of statements issued by the current transaction.
- It specifies the statements can not read the data that has been modified but not yet committed by the other transactions.
- No other transactions can modify the data that has been read by the current transaction until the current transaction completes.
- Other transaction can insert the new rows with the key values that would fall in the range of keys read by the statements in the current transaction completes.
- This is highest level where transaction completely isolated from one another.
- Place a range locks on the data table preventing other users from the updating or inserting rows in to the data table until the transaction is complete.
No comments :
Post a Comment