You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sp_Blitz.sql
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5024,7 +5024,7 @@ IF @ProductVersionMajor >= 10
5024
5024
''File Configuration'' AS FindingsGroup,
5025
5025
''File growth set to percent'',
5026
5026
''https://BrentOzar.com/go/percentgrowth'' AS URL,
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.''
5027
+
''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.''
5028
5028
FROM [?].sys.database_files f
5029
5029
WHERE is_percent_growth = 1 and size > 128000 OPTION (RECOMPILE);';
0 commit comments