Please Don’t Do This!

Please, please, please Admins do not leave your default index fill factor at 0. This means you are telling SQL Server to fill the page 100% full when creating indexes. This also means you are forcing it to a new page when additional inserts are done. These are called PAGE SPLITS which can take time to perform and is a resource intensive operation. Having a high fill factor will cause more index fragmentation, decrease performance and increase IO.

If you find that this is how your system is configured, all is not lost. You can correct this by changing the default value so that new indexes will be created with proper factor and rebuilding your existing indexes with another fill factor value. I like to use 80 across the board for most, of course there is always the “it depends” scenario that arises but 80 is a pretty safe bet. One of those “it depends” would be on logging table that has the correct clustering key and never gets updates in between values (make sense?), I don’t want a fill factor of 80.  I’d want 0/100 to maximize page density as page splits wouldn’t occur if the clustered key is monotonically increasing.

Note, having the additional 20% free on a page will increase your storage requirements but the benefit outweighs the cost.

Example syntax for changing the default

EXEC sys.sp_configure N'fill factor (%)', N'80'

GO

RECONFIGURE WITH OVERRIDE

GO

Example script for rebuilding in index with new fill factor

USE DEMO;

-------------------------------------------------------------------------

 --Drops and re-creates the CREATE INDEX IDX_DepartmentID_DepartmentName

 --index on the dbo.Departments table with a fill factor of 80. 

-------------------------------------------------------------------------

CREATE INDEX IDX_DepartmentID_DepartmentName ON dbo.Departments 

   (DepartmentID, IDX_DepartmentID_DepartmentName)  

WITH (DROP_EXISTING = ON, FILLFACTOR = 80);  

GO

 

Share

One Response

  1. Great article. However couple of questions.

    1. For OLTP is 80% a good starting point?
    2. Is there a perfmon counter to measure performance before and after.
    3. If changed at the server level will all existing indexes also change or anything moving forward.
    4. If current indexes are set to 0, it is recommended to change them to 80.

    thanks

Leave a Reply to JamesCancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Trust DCAC with your data

Your data systems may be treading water today, but are they prepared for the next phase of your business growth?