Skip to content

Commit 588015a

Browse files
authored
Merge pull request #2410 from camaro322hp/patch-1
bug fix for issue 2409
2 parents 3bcfdd9 + 1c9203b commit 588015a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sp_BlitzFirst.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2141,10 +2141,10 @@ If one of them is a lead blocker, consider killing that query.'' AS HowToStopit,
21412141
'Query Problems' AS FindingGroup,
21422142
'Statistics Updated Recently' AS Finding,
21432143
'http://www.BrentOzar.com/go/stats' AS URL,
2144-
Details = (SELECT (SELECT Details + NCHAR(10))
2144+
Details = LEFT((SELECT (SELECT Details + NCHAR(10))
21452145
FROM #UpdatedStats
21462146
ORDER BY RowsForSorting DESC
2147-
FOR XML PATH(''));
2147+
FOR XML PATH('')),4000);
21482148

21492149
RAISERROR('Finished running investigatory queries',10,1) WITH NOWAIT;
21502150

0 commit comments

Comments
 (0)