From 4da4830904023bfcccf535b70651e9ce8d44a252 Mon Sep 17 00:00:00 2001 From: Igor Galiney <60065267+igaliney@users.noreply.github.com> Date: Thu, 5 Dec 2024 11:05:10 +0200 Subject: [PATCH] Replace illegal character & in sp_Blitz for Markdown output result The issue is caused by an illegal character (&) in the description of the Finding column for CheckID = 162. To resolve this issue, update the description to replace & with and, ensuring XML compatibility. --- sp_Blitz.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sp_Blitz.sql b/sp_Blitz.sql index 9f7df17d..ca0963bf 100644 --- a/sp_Blitz.sql +++ b/sp_Blitz.sql @@ -8617,7 +8617,7 @@ IF @ProductVersionMajor >= 10 SELECT 162 AS CheckID , 50 AS Priority , 'Performance' AS FindingGroup , - 'Poison Wait Detected: CMEMTHREAD & NUMA' AS Finding , + 'Poison Wait Detected: CMEMTHREAD and NUMA' AS Finding , 'https://www.brentozar.com/go/poison' AS URL , CONVERT(VARCHAR(10), (MAX([wait_time_ms]) / 1000) / 86400) + ':' + CONVERT(VARCHAR(20), DATEADD(s, (MAX([wait_time_ms]) / 1000), 0), 108) + ' of this wait have been recorded' + CASE WHEN ts.status = 1 THEN ' despite enabling trace flag 8048 already.'