Skip to content

Commit 875182f

Browse files
authored
Merge pull request #3600 from BrentOzarULTD/3599_sp_Blitz_overflow
#3599 sp_Blitz overflow
2 parents 6d6fdfb + c6e0826 commit 875182f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sp_Blitz.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7049,7 +7049,7 @@ IF @ProductVersionMajor >= 10
70497049
''File Configuration'' AS FindingsGroup,
70507050
''File growth set to percent'',
70517051
''https://www.brentozar.com/go/percentgrowth'' AS URL,
7052-
''The ['' + DB_NAME() + ''] database file '' + f.physical_name + '' has grown to '' + CONVERT(NVARCHAR(10), CONVERT(NUMERIC(38, 2), (f.size / 128.) / 1024.)) + '' GB, and is using percent filegrowth settings. This can lead to slow performance during growths if Instant File Initialization is not enabled.''
7052+
''The ['' + DB_NAME() + ''] database file '' + f.physical_name + '' has grown to '' + CONVERT(NVARCHAR(20), CONVERT(NUMERIC(38, 2), (f.size / 128.) / 1024.)) + '' GB, and is using percent filegrowth settings. This can lead to slow performance during growths if Instant File Initialization is not enabled.''
70537053
FROM [?].sys.database_files f
70547054
WHERE is_percent_growth = 1 and size > 128000 OPTION (RECOMPILE);';
70557055
END;

0 commit comments

Comments
 (0)