• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

监控 SQL Server 的运行状况

发布: 2009-12-22 11:01 | 作者: 不详 | 来源: 领测国际测试网采编 | 查看: 355次 | 进入软件测试论坛讨论

领测软件测试网

  dbcc INPUTBUFFER(87)

  dbcc INPUTBUFFER(87)

  下面的查询显示 SQL 等待分析和前 10 个等待的资源。

  view plaincopy to clipboardprint?

  select top 10 *

  from sys.dm_os_wait_stats

  --where wait_type not in ('CLR_SEMAPHORE','LAZYWRITER_SLEEP','RESOURCE_QUEUE','SLEEP_TASK','SLEEP_SYSTEMTASK','WAITFOR')

  order by wait_time_ms desc

  select top 10 *

  from sys.dm_os_wait_stats

  --where wait_type not in ('CLR_SEMAPHORE','LAZYWRITER_SLEEP','RESOURCE_QUEUE','SLEEP_TASK','SLEEP_SYSTEMTASK','WAITFOR')

  order by wait_time_ms desc

  若要找出哪个 spid 正在阻塞另一个 spid,可在数据库中创建以下存储过程,然后执行该存储过程。此存储过程会报告此阻塞情况。键入 sp_who 可找出 @spid;@spid 是可选参数。

  view plaincopy to clipboardprint?

  create proc dbo.sp_block (@spid bigint=NULL)

  as

  select

  t1.resource_type,

  'database'=db_name(resource_database_id),

  'blk object' = t1.resource_associated_entity_id,

  t1.request_mode,

  t1.request_session_id,

  t2.blocking_session_id

  from

  sys.dm_tran_locks as t1,

  sys.dm_os_waiting_tasks as t2

  where

  t1.lock_owner_address = t2.resource_address and

  t1.request_session_id = isnull(@spid,t1.request_session_id)

  create proc dbo.sp_block (@spid bigint=NULL)

  as

  select

  t1.resource_type,

  'database'=db_name(resource_database_id),

  'blk object' = t1.resource_associated_entity_id,

  t1.request_mode,

  t1.request_session_id,

  t2.blocking_session_id

  from

  sys.dm_tran_locks as t1,

  sys.dm_os_waiting_tasks as t2

  where

  t1.lock_owner_address = t2.resource_address and

  t1.request_session_id = isnull(@spid,t1.request_session_id)

  以下是使用此存储过程的示例。

  view plaincopy to clipboardprint?

  exec sp_block

  exec sp_block @spid = 7

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网