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