数据库版本是sqlserver2000企业版,最近想对数据库的索引进行重建,但不知道该使用哪种方法。
把数据库完全备份出来,然后再重新还原是不是也相当于重建了索引??
------解决方案--------------------
- SQL code
alter index [IndexName/ALL] on [TableName] rebuild
------解决方案--------------------
alter index [IndexName] on [TableName] rebuild online=on--联机重建索引。即不锁定表重新创建索引
------解决方案--------------------
忘了你是SQL2000, 用这个,
- SQL code
DBCC DBREINDEX('[DatabaseName].dbo.[TableName]', '[IndexName]', 90)