深入分析MSSQL数据库中事务隔离级别和锁机制
锁机制
nolock和readpast的区别。
1. 开启一个事务执行插入数据的操作。
begin tran t insert into customer select 'a','a'
2. 执行一条查询语句。
select * from customer with (nolock)
结果中显示”a”和”a”。当1中事务回滚后,那么a将成为脏数据。(注:1中的事务未提交) 。nolock表明没有对数据表添加共享锁以阻止其它事务对数据表数据的修改。
select * from customer
这条语句将一直死锁,直到排他锁解除或者锁超时为止。(注:设置锁超时set lock_timeout 1800)
select * from customer with (readpast)
这条语句将显示a未提交前的状态,但不锁定整个表。这个提示指明数据库引擎返回结果时忽略加锁的行或数据页。
3. 执行一条插入语句。
begin tran t insert into customer select 'b','b' commit tran t
这个时候,即使步骤1的事务回滚,那么a这条数据将丢失,而b继续插入数据库中。
nolock
1. 执行如下语句。
begin tran ttt select * from customer with (nolock) waitfor delay '00:00:20' commit tran ttt
注:nolock不加任何锁,可以增删查改而不锁定。
insert into customer select 'a','b' –不锁定 delete customer where id=1 –不锁定 select * from customer –不锁定 update customer set title='aa' where id=1 –不锁定
rowlock
1. 执行一条带行锁的查询语句。
set transaction isolation level repeatable read -- (必须) begin tran ttt select * from customer with (rowlock) where id=17 waitfor delay '00:00:20' commit tran ttt
注:在删除和更新正在查询的数据时,会锁定数据。对其他未查询的行和增加,查询数据无影响。
insert into customer select 'a','b' –不等待 delete customer where id=17 –等待 delete customer where id<>17 –不等待 select * from customer –不等待 update customer set title='aa' where id=17–等待 update customer set title='aa' where id<>17–不等待
holdlock,tablock和tablockx
1. 执行holdlock
begin tran ttt select * from customer with (holdlock) waitfor delay '00:00:10' commit tran ttt
注:其他事务可以读取表,但不能更新删除
update customer set title='aa' —要等待10秒中。
select * from customer —不需要等待
2. 执行tablockx
begin tran ttt select * from customer with (tablockx) waitfor delay '00:00:10' commit tran ttt
注:其他事务不能读取表,更新和删除
update customer set title='aa' —要等待10秒中。
select * from customer —要等待10秒中。
3. 执行tablock
begin tran ttt select * from customer with (tablock) waitfor delay '00:00:10' commit tran ttt
注:其他事务可以读取表,但不能更新删除
update customer set title='aa' —要等待10秒中。
select * from customer —不需要等待
udplock
1. 在a连接中执行。
begin tran ttt select * from customer with (updlock) waitfor delay '00:00:10' commit tran ttt
2. 在其他连接中执行。
update customer set title='aa' where id=1—要等10秒
select * from customer –不用等
insert into customer select 'a','b'–不用等
注:对于udplock锁,只对更新数据锁定。
注:使用这些选项将使系统忽略原先在set语句设定的事务隔离级别(set transaction isolation level)。
事务隔离级别
脏读:read uncommitted
脏读就是指当一个事务正在访问数据,并且对数据进行了修改,而这种修改还没有提交到数据库中,这时,另外一个事务也访问这个数据,然后使用了这个数据。因为这个数据是还没有提交的数据,那么另外一个事务读到的这个数据是脏数据,依据脏数据所做的操作可能是不正确的。
1. 在a连接中执行。
begin tran t insert into customer select '123','123' waitfor delay '00:00:20' commit tran t
2. 在b连接中执行。
set transaction isolation level read uncommitted select * from customer
这个时候,未提交的数据会'123'会显示出来,当a事务回滚时就导致了脏数据。相当于(nolock)
提交读:read committed
1. 在a连接中执行。
begin tran t insert into customer select '123','123' waitfor delay '00:00:20' commit tran t
2. 在b连接中执行。
set transaction isolation level read committed select * from customer
这个时候,未提交的数据会'123'不会显示出来,当a事务提交以后b中才能读取到数据。避免了脏读。
不可重复读:repeatable read
不可重复读是指在一个事务内,多次读同一数据。在这个事务还没有结束时,另外一个事务也访问该同一数据。那么,在第一个事务中的两次读数据之间,由于第二个事务的修改,那么第一个事务两次读到的数据可能是不一样的。这样就发生了在一个事务内两次读到的数据是不一样的,因此称为是不可重复读。
例如:
1. 在a连接中执行如下语句。
set transaction isolation level repeatable read begin tran ttt select * from customer where id=17 waitfor delay '00:00:30' select * from customer where id=17 commit tran ttt
2. 在b连接中执行如下语句,而且要在第一个事物的三十秒等待内。
update customer set title='d' where id=17
这个时候,此连接将锁住不能执行,一直等到a连接结束为止。而且a连接中两次读取到的数据相同,不受b连接干扰。
注,对于read committed和read uncommitted情况下,b连接不会锁住,等到a连接执行完以后,两条查询语句结果不同,即第二条查询的title变成了d。
序列化读:serializable
1. 在a连接中执行。
set transaction isolation level serializable begin tran t update customer set title='111' waitfor delay '00:00:20' commit tran t
2. 在b连接中执行,并且要在a执行后的20秒内。
begin tran tt insert into customer select '2','2' commit tran tt
在a连接的事务提交之前,b连接无法插入数据到表中,这就避免了幻觉读。
注:幻觉读是指当事务不是独立执行时发生的一种现象,例如 第一个事务对一个表中的数据进行了修改,这种修改涉及到表中的全部数据行。同时,第二个事务也修改这个表中的数据,这种修改是向表中插入一行新数据。那么,以后就会发生操作第一个事务的用户发现表中还有没有修改的数据行,就好像发生了幻觉一样。
共享锁
共享锁(s 锁)允许并发事务在封闭式并发控制(请参阅并发控制的类型)下读取 (select) 资源。资源上存在共享锁(s 锁)时,任何其他事务都不能修改数据。读取操作一完成,就立即释放资源上的共享锁(s 锁),除非将事务隔离级别设置为可重复读或更高级别,或者在事务持续时间内用锁定提示保留共享锁(s 锁)。
更新锁
更新锁(u 锁)可以防止常见的死锁。在可重复读或可序列化事务中,此事务读取数据 [获取资源(页或行)的共享锁(s 锁)],然后修改数据 [此操作要求锁转换为排他锁(x 锁)]。如果两个事务获得了资源上的共享模式锁,然后试图同时更新数据,则一个事务尝试将锁转换为排他锁(x 锁)。共享模式到排他锁的转换必须等待一段时间,因为一个事务的排他锁与其他事务的共享模式锁不兼容;发生锁等待。第二个事务试图获取排他锁(x 锁)以进行更新。由于两个事务都要转换为排他锁(x 锁),并且每个事务都等待另一个事务释放共享模式锁,因此发生死锁。
若要避免这种潜在的死锁问题,请使用更新锁(u 锁)。一次只有一个事务可以获得资源的更新锁(u 锁)。如果事务修改资源,则更新锁(u 锁)转换为排他锁(x 锁)。
排他锁
排他锁(x 锁)可以防止并发事务对资源进行访问。使用排他锁(x 锁)时,任何其他事务都无法修改数据;仅在使用 nolock 提示或未提交读隔离级别时才会进行读取操作。
数据修改语句(如 insert、update 和 delete)合并了修改和读取操作。语句在执行所需的修改操作之前首先执行读取操作以获取数据。因此,数据修改语句通常请求共享锁和排他锁。例如,update 语句可能根据与一个表的联接修改另一个表中的行。在此情况下,除了请求更新行上的排他锁之外,update 语句还将请求在联接表中读取的行上的共享锁。
下一篇: Spring(七)