I've read in the "About Service Pack 2 for SharePoint Products and Technologies" paper that SP2 includes an update for the Update Statistics Timer Job that causes SharePoint to run SQL Server's online index rebuild feature (p.4).

I'm uncertain of the terminology here but is this the rebuild that SQL Server uses for minor fragmentation (up to around 40%) and leaves the DB online? I'm also guessing that this will therefore not rebuild severely fragmented indexes as I think this requires the DB to come offline. Can someone please confirm my belief here?

link|improve this question
feedback

1 Answer

Depends on which edition of SQL Server 2005 you are using on the back end. Standard Edition doesn't have an online index rebuild, but the Enterprise Edition does. If the index is rebuilt offline, it doesn't force the DB to come offline, only that particular index is unavailable during the rebuild. So the underlying table/data is still available (you may see performance degradation during this rebuild however).

HTH, Dan

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.