-
- /***********************************************************************************************************************
- 阻塞:其中一个事务阻塞,其它事务等待对方释放它们的锁,同时会导致死锁问题。
-
- 整理人:中国风(Roy)
-
- 日期:2008.07.20
- ************************************************************************************************************************/
-
-
- if not object_id('Ta') is null
- drop table Ta
- go
- create table Ta(ID int Primary key,Col1 int,Col2 nvarchar(10))
- insert Ta
- select 1,101,'A' union all
- select 2,102,'B' union all
- select 3,103,'C'
- go
- 生成数据:
- /*
- 表Ta
- ID Col1 Col2
-
- 1 101 A
- 2 102 B
- 3 103 C
-
- (3 行受影响)
- */
-
- 将处理阻塞减到最少:
- 1、事务要尽量短
- 2、不要在事务中请求用户输入
- 3、在读数据考虑便用行版本管理
- 4、在事务中尽量访问最少量的数据
- 5、尽可能地使用低的事务隔离级别
-
- go
- 阻塞1(事务):
-
-
-
- begin tran
-
- update ta set col2='BB' where ID=2
-
- begin tran
- insert Ta values(4,104,'D')
-
- begin tran
- delete ta where ID=1
-
-
-
-
- begin tran
- select * from ta
-
-
-
-
- select
- request_session_id as spid,
- resource_type,
- db_name(resource_database_id) as dbName,
- resource_description,
- resource_associated_entity_id,
- request_mode as mode,
- request_status as Status
- from
- sys.dm_tran_locks
- /*
- spid resource_type dbName resource_description resource_associated_entity_id mode Status
-
- 55 DATABASE Test 0 S GRANT NULL
- 54 DATABASE Test 0 S GRANT NULL
- 53 DATABASE Test 0 S GRANT NULL
- 55 PAGE Test 1:201 72057594040483840 IS GRANT
- 54 PAGE Test 1:201 72057594040483840 IX GRANT
- 55 OBJECT Test 1774629365 IS GRANT NULL
- 54 OBJECT Test 1774629365 IX GRANT NULL
- 54 KEY Test (020068e8b274) 72057594040483840 X GRANT
- 55 KEY Test (020068e8b274) 72057594040483840 S WAIT
- (9 行受影响)
- */
-
-
- select connect_time,last_read,last_write,most_recent_sql_handle
- from sys.dm_exec_connections where session_id in(54,55)
-
-
- select login_time,host_name,program_name,login_name,last_request_start_time,last_request_end_time
- from sys.dm_exec_sessions where session_id in(54,55)
-
-
- select
- session_id,blocking_session_id,wait_type,wait_time,wait_resource
- from
- sys.dm_exec_requests
- where
- blocking_session_id>0
-
-
-
- select
- a.session_id,sql.text,a.most_recent_sql_handle
- from
- sys.dm_exec_connections a
- cross apply
- sys.dm_exec_sql_text(a.most_recent_sql_handle) as SQL
- where
- a.Session_id in(54,55)
- /*
- session_id text
-
- 54 begin tran update ta set col2='BB' where ID=2
- 55 begin tran select * from ta
- */
-
- 处理方法:
-
- begin tran
- select * from ta with (nolock)
-
-
-
-
-
- 阻塞2(索引):
-
-
- SET TRANSACTION ISOLATION LEVEL SERIALIZABLE
- begin tran
- update ta set col2='BB' where COl1=102
-
-
-
-
-
-
- insert into ta(ID,Col1,Col2) values(5,105,'E')
-
-
-
- 处理方法:
-
- create index IX_Ta_Col1 on Ta(Col1)
-
-
-
- 阻塞3(会话设置):
-
-
-
- begin tran
-
- update ta set col2='BB' where ID=2
- select col2 from ta where ID=2
-
-
-
-
-
- SET TRANSACTION ISOLATION LEVEL READ COMMITTED
- begin tran
- select * from ta
-
-
-
- 处理方法:
-
-
- SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
- begin tran
- select * from ta
- <pre>
posted @
2011-10-24 12:37
哥本哈根
阅读(
182)
评论()
编辑
收藏
举报