인스턴스의 캐시에 올라와있는 쿼리 중 비용을 많이 소비하고 있는 쿼리를 뽑는 쿼리입니다. 장애 상황에서 제일 문제되는 쿼리를 뽑을 때 사용할 수 있습니다. SELECT TOP 300 db_name(execText.dbid) AS dbName ,execution_count AS execCnt ,(total_worker_time / execution_count) / 1000 AS avgCPU ,(total_elapsed_time / execution_count) / 1000 AS avgDuration , total_logical_reads / execution_count AS avgReads , max_worker_time AS maxCPU , max_elapsed_time AS maxDuration , m..