Skip to content

Commit e45eab1

Browse files
authored
#1983 sp_BlitzCache sort order (#1984)
Fixing error when calling sp_BlitzCache. Closes #1983.
1 parent 5cb59ce commit e45eab1

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
@@ -2768,7 +2768,7 @@ BEGIN
27682768

27692769
/* Next, Compilations/Sec High - CheckID 15 and 16 */
27702770
IF @BlitzCacheSortOrder IS NULL AND EXISTS (SELECT * FROM #BlitzFirstResults WHERE CheckID IN (15,16))
2771-
SET @BlitzCacheSortOrder = 'compilations';
2771+
SET @BlitzCacheSortOrder = 'recent compilations';
27722772

27732773
/* Still not set? Use the top wait type. */
27742774
IF @BlitzCacheSortOrder IS NULL AND EXISTS (SELECT * FROM #BlitzFirstResults WHERE CheckID = 6)
@@ -4008,7 +4008,7 @@ EXEC dbo.sp_BlitzFirst @ExpertMode = 1;
40084008
40094009
Saving output to tables:
40104010
EXEC sp_BlitzFirst
4011-
, @OutputDatabaseName = 'DBAtools'
4011+
@OutputDatabaseName = 'DBAtools'
40124012
, @OutputSchemaName = 'dbo'
40134013
, @OutputTableName = 'BlitzFirst'
40144014
, @OutputTableNameFileStats = 'BlitzFirst_FileStats'

0 commit comments

Comments
 (0)