事务隔离级别(IsolationLevel)

时间:2023-03-09 18:30:29
事务隔离级别(IsolationLevel)
事务的特性(ACID)
1、原子性(Atomicity)
  事物是数据库的逻辑工作单位,事务中的诸多操作要么全做要么全不做
2、一致性(Consistency)
  事务执行结果必须是使数据库从一个一致性状态变到另一个一致性状态
3、隔离性(Isolation)
  一个数据的执行不能被其他事务干扰
4、持续性/永久性(Durability)
  一个事务一旦提交,它对数据库中的数据改变是永久性的

隔离级别与并发性是互为矛盾的:隔离程度越高,数据库的并发性越差;隔离程度越低,数据库的并发性越好,这点很好理解

事务的隔离级别(IsolationLevel)

     // 摘要:
// Specifies the transaction locking behavior for the connection.
public enum IsolationLevel
{
// 摘要:
// A different isolation level than the one specified is being used, but the
// level cannot be determined.
Unspecified = -,
//
// 摘要:
// The pending changes from more highly isolated transactions cannot be overwritten.
Chaos = ,
//
// 摘要:
// A dirty read is possible, meaning that no shared locks are issued and no
// exclusive locks are honored.
ReadUncommitted = ,
//
// 摘要:
// Shared locks are held while the data is being read to avoid dirty reads,
// but the data can be changed before the end of the transaction, resulting
// in non-repeatable reads or phantom data.
ReadCommitted = ,
//
// 摘要:
// Locks are placed on all data that is used in a query, preventing other users
// from updating the data. Prevents non-repeatable reads but phantom rows are
// still possible.
RepeatableRead = ,
//
// 摘要:
// A range lock is placed on the System.Data.DataSet, preventing other users
// from updating or inserting rows into the dataset until the transaction is
// complete.
Serializable = ,
//
// 摘要:
// Reduces blocking by storing a version of data that one application can read
// while another is modifying the same data. Indicates that from one transaction
// you cannot see changes made in other transactions, even if you requery.
Snapshot = ,
}

常用状态分析:

  1、ReadUncommitted

    表示:未提交读。当事务A更新某条数据的时候,不容许其他事务来更新该数据,但可以进行读取操作

  2、ReadCommitted

    表示:提交读。当事务A更新数据时,不容许其他事务进行任何的操作包括读取,但事务A读取时,其他事务可以进行读取、更新

  3、RepeatableRead

    表示:重复读。当事务A更新数据时,不容许其他事务进行任何的操作,但是当事务A进行读取的时候,其他事务只能读取,不能更新

  4、Serializable

    表示:序列化。最严格的隔离级别,当然并发性也是最差的,事务必须依次进行。

读取现象

通过一些现象,可以反映出隔离级别的效果。这些现象有:

  • 更新丢失(lost update):当系统允许两个事务同时更新同一数据时,发生更新丢失。
  • 脏读(dirty read):当一个事务读取另一个事务尚未提交的修改时,产生脏读。
  • 不重复读(nonrepeatable read):同一查询在同一事务中多次进行,由于其他提交事务所做的修改或删除,每次返回不同的结果集,此时发生非重复读。(A transaction rereads data it has previously read and finds that another committed transaction has modified or deleted the data.  )
  • 幻读(phantom read):同一查询在同一事务中多次进行,由于其他提交事务所做的插入操作,每次返回不同的结果集,此时发生幻像读。(A transaction reexecutes a query returning a set of rows that satisfies a search condition and finds that another committed transaction has inserted additional rows that satisfy the condition.  )

隔离级别与读取现象

隔离级别 脏读   Dirty Read  不可重复读取  NonRepeatable Read  幻读 Phantom Read 
未授权读取/未提交读   read uncommitted 可能发生 可能发生 可能发生
授权读取/提交读          read committed - 可能发生 可能发生
重复读                         read repeatable - - 可能发生
序列化                        serializable         - - -

常见数据库的默认级别

数据库 默认隔离级别
Oracle read committed
SqlServer read committed
MySQL(InnoDB) Read-Repeatable