I am not experienced in the details of setting up an Index and have gone with Sql Server 2005 defaults until now.
The question is how to best optimize the main table for my website. 150,000 reads each day. 10-20 updates and deletes each day.
The primary key has a clustered index. Fill Factor = 0. Pad Index = No.
4 other nonunique, nonclustered indexes on join fields, foreign key and columns which are used to sort.
All have Fill Factor = 0. Pad Index = No.
The 4 other indexes are always fragmented every time I check. Between 25% -75%.
I rebuild the indexes once a month.
- Should I be setting the fill factor of the 4 other indexes differently?
- What other advice can you give me to optimize this table or indexes in general?
Thanks!