소스 검색

Added info when lightweight profiling is not enabled on 2016 SP1, precluding live query exec plan.

Pedro Lopes 9 년 전
부모
커밋
a465a709e7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Running-Blocked-Processes/view_Running_Blocked_processes.sql

+ 1 - 1
Running-Blocked-Processes/view_Running_Blocked_processes.sql

@@ -216,7 +216,7 @@ BEGIN
 	er.status,
 	--er.command,
 	qp.query_plan,
-	qes.query_plan AS [live_query_plan_snapshot],
+	CASE WHEN qes.query_plan IS NULL THEN ''Lightweight Query Profiling Infrastructure is not enabled'' ELSE qes.query_plan END AS [live_query_plan_snapshot],
 	er.percent_complete,
 	CONVERT(VARCHAR(20),DATEADD(ms,er.estimated_completion_time,GETDATE()),20) AS [ETA_completion_time],
 	(er.cpu_time/1000) AS cpu_time_sec,