The best way to reindex 500GB database in SQL Server 2008
- Is it by using Maintenance plan?
- Would I face performance problems while reindexing?
The best way to reindex 500GB database in SQL Server 2008
|
||||
|
Actually - reindexing WILL lead you to to performance issues. It very depends what you want to reindex and which server edition you have. If you have an Enterprise+ edition - you can reindex all the non-clustered indexes as ONLINE operation
same you can do with the clustered indexes when them does not contain BLOB columns - just replace i.type = 2 to i.type = 1 for reindexing specially clustered index of Very Big Tables with BLOB fields - you may choose three options -
|
|||
|