1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 -- ===== [CPU] ===== -- CPU 점유율 높은 쿼리 확인 ;WITH cte AS ( SELECT stat.[sql_handle] , stat.statement_start_offset , stat.statement_end_offset , COUNT( * ) AS NumExecutionPlans , SUM(stat.execution_count) AS TotalExecutions , ((SUM(stat.total_logical_reads) * 1. 0 ) / SUM(stat.execution_count)) AS AvgLogicalReads , ((SUM(stat.total_worker_time) * 1. 0 ) / ...