開始內存壓力檢測和調查之前,請確保已啟用 SQL Server 中的高級選項。請先對 master 數據庫運行以下查詢以啟用此選項。
- sp_configure 'show advanced options'
- go
- sp_configure 'show advanced options', 1
- go
- reconfigure
- go
首先運行以下查詢以檢查內存相關配置選項。
- sp_configure 'awe_enabled'
- go
- sp_configure 'min server memory'
- go
- sp_configure 'max server memory'
- go
- sp_configure 'min memory per query'
- go
- sp_configure 'query wait'
- go
運行下面的 DMV 查詢以查看 CPU、計劃程序內存和緩沖池信息。
- select
- cpu_count,
- hyperthread_ratio,
- scheduler_count,
- physical_memory_in_bytes / 1024 / 1024 as physical_memory_mb,
- virtual_memory_in_bytes / 1024 / 1024 as virtual_memory_mb,
- bpool_committed * 8 / 1024 as bpool_committed_mb,
- bpool_commit_target * 8 / 1024 as bpool_target_mb,
- bpool_visible * 8 / 1024 as bpool_visible_mb
- from sys.dm_os_sys_info
檢查闩鎖等待統計信息以確定 I/O 瓶頸。運行下面的 DMV 查詢以查找 I/O 闩鎖等待統計信息。
- select wait_type, waiting_tasks_count, wait_time_ms, signal_wait_time_ms, wait_time_ms / waiting_tasks_count
- from sys.dm_os_wait_stats
- where wait_type like 'PAGEIOLATCH%' and waiting_tasks_count > 0
- order by wait_type
如果 waiting_task_counts 和 wait_time_ms 與正常情況相比有顯著變化,則可以確定存在 I/O 問題。獲取 SQL Server 平穩運行時性能計數器和主要 DMV 查詢輸出的基線非常重要。
這些 wait_types 可以指示您的 I/O 子系統是否遇到瓶頸。
使用以下 DMV 查詢來查找當前掛起的 I/O 請求。請定期執行此查詢以檢查 I/O 子系統的運行狀況,並隔離 I/O 瓶頸中涉及的物理磁盤。
- select
- database_id,
- file_id,
- io_stall,
- io_pending_ms_ticks,
- scheduler_address
- from sys.dm_io_virtual_file_stats(NULL, NULL)t1,
- sys.dm_io_pending_io_requests as t2
- where t1.file_handle = t2.io_handle
在正常情況下,該查詢通常不返回任何內容。如果此查詢返回一些行,則需要進一步調查。
您還可以執行下面的 DMV 查詢以查找 I/O 相關查詢。
- select top 5 (total_logical_reads/execution_count) as avg_logical_reads,
- (total_logical_writes/execution_count) as avg_logical_writes,
- (total_physical_reads/execution_count) as avg_physical_reads,
- Execution_count, statement_start_offset, p.query_plan, q.text
- from sys.dm_exec_query_stats
- cross apply sys.dm_exec_query_plan(plan_handle) p
- cross apply sys.dm_exec_sql_text(plan_handle) as q
- order by (total_logical_reads + total_logical_writes)/execution_count Desc
下面的 DMV 查詢可用於查找哪些批處理/請求生成的 I/O 最多。如下所示的 DMV 查詢可用於查找可生成最多 I/O 的前五個請求。調整這些查詢將提高系統性能。
- select top 5
- (total_logical_reads/execution_count) as avg_logical_reads,
- (total_logical_writes/execution_count) as avg_logical_writes,
- (total_physical_reads/execution_count) as avg_phys_reads,
- Execution_count,
- statement_start_offset as stmt_start_offset,
- sql_handle,
- plan_handle
- from sys.dm_exec_query_stats
- order by (total_logical_reads + total_logical_writes) Desc