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
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -5253,15 +5253,16 @@ IF @ProductVersionMajor >= 10
5253
5253
Finding,
5254
5254
URL,
5255
5255
Details)
5256
-
SELECT DISTINCT 60 AS CheckID,
5256
+
SELECT 60 AS CheckID,
5257
5257
''?'' as DatabaseName,
5258
5258
100 AS Priority,
5259
5259
''Performance'' AS FindingsGroup,
5260
5260
''Fill Factor Changed'',
5261
5261
''https://BrentOzar.com/go/fillfactor'' AS URL,
5262
-
''The ['' + DB_NAME() + ''] database has objects with fill factor < 80%. This can cause memory and storage performance problems, but may also prevent page splits.''
5262
+
''The ['' + DB_NAME() + ''] database has '' + CAST(SUM(1) AS NVARCHAR(50)) + ''objects with fill factor = '' + CAST(fill_factor AS NVARCHAR(5)) + ''%. This can cause memory and storage performance problems, but may also prevent page splits.''
5263
5263
FROM [?].sys.indexes
5264
-
WHERE fill_factor <> 0 AND fill_factor < 80 AND is_disabled = 0 AND is_hypothetical = 0 OPTION (RECOMPILE);';
5264
+
WHERE fill_factor <> 0 AND fill_factor < 80 AND is_disabled = 0 AND is_hypothetical = 0
0 commit comments