程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> 監控SQL Server的運行狀況(2)

監控SQL Server的運行狀況(2)

編輯:關於SqlServer
存瓶頸

開始內存壓力檢測和調查之前,請確保已啟用 SQL Server 中的高級選項。請先對 master 數據庫運行以下查詢以啟用此選項。

  1. sp_configure 'show advanced options'
  2. go
  3. sp_configure 'show advanced options', 1
  4. go
  5. reconfigure
  6. go

首先運行以下查詢以檢查內存相關配置選項。

  1. sp_configure 'awe_enabled'
  2. go
  3. sp_configure 'min server memory'
  4. go
  5. sp_configure 'max server memory'
  6. go
  7. sp_configure 'min memory per query'
  8. go
  9. sp_configure 'query wait'
  10. go

運行下面的 DMV 查詢以查看 CPU、計劃程序內存和緩沖池信息。

  1. select
  2. cpu_count,
  3. hyperthread_ratio,
  4. scheduler_count,
  5. physical_memory_in_bytes / 1024 / 1024 as physical_memory_mb,
  6. virtual_memory_in_bytes / 1024 / 1024 as virtual_memory_mb,
  7. bpool_committed * 8 / 1024 as bpool_committed_mb,
  8. bpool_commit_target * 8 / 1024 as bpool_target_mb,
  9. bpool_visible * 8 / 1024 as bpool_visible_mb
  10. from sys.dm_os_sys_info

I/O 瓶頸

檢查闩鎖等待統計信息以確定 I/O 瓶頸。運行下面的 DMV 查詢以查找 I/O 闩鎖等待統計信息。

  1. select wait_type, waiting_tasks_count, wait_time_ms, signal_wait_time_ms, wait_time_ms / waiting_tasks_count
  2. from sys.dm_os_wait_stats
  3. where wait_type like 'PAGEIOLATCH%' and waiting_tasks_count > 0
  4. order by wait_type

如果 waiting_task_countswait_time_ms 與正常情況相比有顯著變化,則可以確定存在 I/O 問題。獲取 SQL Server 平穩運行時性能計數器和主要 DMV 查詢輸出的基線非常重要。

這些 wait_types 可以指示您的 I/O 子系統是否遇到瓶頸。

使用以下 DMV 查詢來查找當前掛起的 I/O 請求。請定期執行此查詢以檢查 I/O 子系統的運行狀況,並隔離 I/O 瓶頸中涉及的物理磁盤。

  1. select
  2. database_id,
  3. file_id,
  4. io_stall,
  5. io_pending_ms_ticks,
  6. scheduler_address
  7. from sys.dm_io_virtual_file_stats(NULL, NULL)t1,
  8. sys.dm_io_pending_io_requests as t2
  9. where t1.file_handle = t2.io_handle

在正常情況下,該查詢通常不返回任何內容。如果此查詢返回一些行,則需要進一步調查。

您還可以執行下面的 DMV 查詢以查找 I/O 相關查詢。

  1. select top 5 (total_logical_reads/execution_count) as avg_logical_reads,
  2. (total_logical_writes/execution_count) as avg_logical_writes,
  3. (total_physical_reads/execution_count) as avg_physical_reads,
  4. Execution_count, statement_start_offset, p.query_plan, q.text
  5. from sys.dm_exec_query_stats
  6. cross apply sys.dm_exec_query_plan(plan_handle) p
  7. cross apply sys.dm_exec_sql_text(plan_handle) as q
  8. order by (total_logical_reads + total_logical_writes)/execution_count Desc

下面的 DMV 查詢可用於查找哪些批處理/請求生成的 I/O 最多。如下所示的 DMV 查詢可用於查找可生成最多 I/O 的前五個請求。調整這些查詢將提高系統性能。

  1. select top 5
  2. (total_logical_reads/execution_count) as avg_logical_reads,
  3. (total_logical_writes/execution_count) as avg_logical_writes,
  4. (total_physical_reads/execution_count) as avg_phys_reads,
  5. Execution_count,
  6. statement_start_offset as stmt_start_offset,
  7. sql_handle,
  8. plan_handle
  9. from sys.dm_exec_query_stats
  10. order by (total_logical_reads + total_logical_writes) Desc
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved