0

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?

Mike H
  • 103
  • 2

1 Answers1

0

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

SQL3D
  • 670
  • 1
  • 6
  • 11