Skip to content

Commit 6e1398f

Browse files
authored
Merge pull request BrentOzarULTD#1312 from BrentOzarULTD/Issue_1310
Fixes BrentOzarULTD#1310
2 parents e0a31ab + 639c45d commit 6e1398f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sp_Blitz.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -5024,7 +5024,7 @@ IF @ProductVersionMajor >= 10
50245024
''File Configuration'' AS FindingsGroup,
50255025
''File growth set to percent'',
50265026
''https://BrentOzar.com/go/percentgrowth'' AS URL,
5027-
''The ['' + DB_NAME() + ''] database file '' + f.physical_name + '' has grown to '' + CAST((f.size * 8 / 1000000) AS NVARCHAR(10)) + '' GB, and is using percent filegrowth settings. This can lead to slow performance during growths if Instant File Initialization is not enabled.''
5027+
''The ['' + DB_NAME() + ''] database file '' + f.physical_name + '' has grown to '' + CAST((CONVERT(BIGINT, f.size * 8) / 1000000) AS NVARCHAR(10)) + '' GB, and is using percent filegrowth settings. This can lead to slow performance during growths if Instant File Initialization is not enabled.''
50285028
FROM [?].sys.database_files f
50295029
WHERE is_percent_growth = 1 and size > 128000 OPTION (RECOMPILE);';
50305030
END;

0 commit comments

Comments
 (0)