Hi,
I realize I am confused about this. I have a table, and ran a DBCC Showcontig on it.
Is see that there is about 836 bytes free per page (7346 bytes are used), and the avg. page density is 89.67%. Avg row size is 400 bytes, so that means we can fit about 18 rows per page (7346/400).
If I were to update all the rows on this page by adding an additional 100 bytes per row, that would mean that all the additional data cannot be contained on the existing page, correct? Some fragmentation would result, by the addition of extra page(s), yes?
But how does FILL FACTOR fit into all of this? I thought fill factor only applies to indexes... so if I were to increase the fill factor for the indexes on this table, how does this affect FREE SPACE on the page?
There is no clusted index on this table.
Thanks
I realize I am confused about this. I have a table, and ran a DBCC Showcontig on it.
Is see that there is about 836 bytes free per page (7346 bytes are used), and the avg. page density is 89.67%. Avg row size is 400 bytes, so that means we can fit about 18 rows per page (7346/400).
If I were to update all the rows on this page by adding an additional 100 bytes per row, that would mean that all the additional data cannot be contained on the existing page, correct? Some fragmentation would result, by the addition of extra page(s), yes?
But how does FILL FACTOR fit into all of this? I thought fill factor only applies to indexes... so if I were to increase the fill factor for the indexes on this table, how does this affect FREE SPACE on the page?
There is no clusted index on this table.
Thanks