I have about 250 GB of indexes in a database with fill factor 100%. To improve the performance I want to reduce fill factor up to 95%.
So before applying the fill factor to my indexes I wanted to know how much the index size will grow after applying 95% of fill factor.
What I am expecting is that total 5% of index size will grow is that correct?
I was thinking about this last night and logically it would make sense so i decided to test it:
--Create Testing table
--Populate with some meaningful data
--Create some index with fillfactor
--Check index Sizes
Expected outcome would be that the index will FillFactor set to 50 would be half the size of the index with no fillfactor set (Server default is 0 so would essentially be 100).
Results:
So FillFactor 50 * 2 = 104,016 when expected would be 103,328 but taking into account that the last page of the index could potentially only have 1 row on it I think its pretty close so you can safely use that calculation