数据库的事务隔离级别

    • 未提交读(read uncommitted)
    • 提交读(read committed)
    • 重复读(repeatable read)
    • 序列化(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. )

    ANSI/ISO SQL92标准定义了一些数据库操作的隔离级别:

    也就是隔离级别,0123ANSI/ISO SQL92标准有很详细的说明,可是这个说明详细是详细,就是看不明白。今天经高人指点,茅厕顿开。

    隔离级别0与事务无关,并且不加锁,也就是说例如select * from t1,系统扫描过和读取的每一行都不加锁。

    隔离级别1与事务无关,只对正在取数的行加锁,取完数马上开锁,也就是说,begin tran 然后select * from t1即使没有commit,锁也会自动打开。

    隔离级别2与事务有关,对扫描过的地方加锁。例如,select * from t1,系统从第1行开始扫描,扫描到第5行的时候,15行都处于锁定状态,直到commit,这些锁才解开。

    隔离级别3与事务有关,对全表加锁。

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

  1. 下面是隔离级别及其对应的可能出现或不可能出现的现象

    Dirty Read

    NonRepeatable Read

    Phantom Read

    Read uncommitted

    Possible

    Possible

    Possible

    Read committed

    Not possible

    Possible

    Possible

    Repeatable read

    Not possible

    Not possible

    Possible

    Serializable

    Not possible

    Not possible

    Not possible

你可能感兴趣的:(事务隔离级别)