Results 1 to 2 of 2

Thread: Fill factor

  1. #1
    Quyen Guest

    Fill factor

    I have some tables and indexes to create in a new database. In the books online, it mentions that the server-wide default fill factor is the best choice in the majority of situations. But when I executed sp_configure, I realized that the default fill factor is 0. Should I keep using the default value or should I specify a new one ? Thanks.

  2. #2
    Dale Shaw Guest

    Fill factor (reply)

    From memory, a 0 means 'fill all data pages but leave space free on index pages to add new records' or something like that.

    Fill factor only really affects tables with clustered indexes where you have a lot of insert activity. This is negated in most small-medium sites by a regular 'rebuild' done by Maintenance Wizard.


    Dale


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •