DB Instance에 성능을 많이 사용하고 있는 쿼리에 대한 실행 계획을 조회하는 쿼리입니다. SELECT TOP 20 db_name(qp.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 , max_logical_reads AS maxReads , total_wo..