Technical Article

Retrieve instance-wide index level fill factor information

,

Paste into SSMS and let it rip.

EXEC sp_MSforeachdb '
USE [?]

SELECT object_name(object_id) as table_name
,*
FROM sys.indexes
WHERE fill_factor <> 0
AND fill_factor <> 100
AND is_disabled = 0
AND is_hypothetical = 0 '

Rate

1.75 (4)

You rated this post out of 5. Change rating

Share

Share

Rate

1.75 (4)

You rated this post out of 5. Change rating