Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Finding the right fill factor is often trial and error.Although a low fill factor value, other than 0, may reduce the requirement to split pages as the index grows, the index will require more storage space and can decrease read performance. Even for an application oriented for many insert and update operations, the number of database reads typically outnumber database writes by a factor of 5 to 10. Therefore, specifying a fill factor other than the default can decrease database read performance by an amount inversely proportional to the fill factor setting. For example, a fill factor value of 50 can cause database read performance to decrease by two times. Read performance is decreased because the index contains more pages, therefore increasing the disk IO operations required to retrieve the data.
* Be consistent with the frequency of index rebuilds.
* If the index is small then don't adjust the Fill Factor.
* Monitor and make changes at the index level, not the table level.
* Keep the Fill Factor values at 0, or between 75 and 100. If any Fill Factors need to be set lower than 75 you should be confident that this is what is needed. Which very possibly is the case in which you will keep seeing a low Scan Density and a low Average Page Density. Do some discovery work and find out how often the table is read from before setting lower Fill Factors.
* If the Scan Density is at 90 percent or above, leave the Fill Factor alone. At least for the first couple of passes at changing the Fill Factors.
* If the Scan Density is between 60 and 90 percent then bring the Fill Factor down with small decrements. Say 2 percent.
* If the Scan Density is lower than 60 then increase the amount of the decrement. Usually I will pick a value that is halfway between the Average Page Density and the Original Fill Factor. For example, if the Original Fill Factor is at 100 (or even 0) and the Average Page Density is at 60 then I would set the Fill Factor to 80.
* If the Average Page Density is higher than the Original Fill Factor and the Scan Density is close to 100 then raise the value of the Fill Factor. This is great, because you know you can pack the pages a little further. For example, if the Fill Factor is at 80, the Scan Density at 98, and the Average Page Density is at 88 then on average the pages filled by 8 percent just prior to the next index rebuild, and are still fairly contiguous; I would increase the Fill Factor, but not bring it higher than 92 since 8 percent growth brings me to 100 percent and another page split. I would probably bring the value to 88 and watch what happens.
* Try to avoid drastic changes to the Fill Factor. I intend on taking more than one pass at changing the values so I can adjust a little at a time.