SQL Server 2014的重建索引

ywxj_001發表於2019-02-05

對於表的index來說,如果這個表的index size非常大的話,建議對這個表的index單獨重建索引。

對全表做重建索引:

alter index all on Table rebuild with(online=on)


僅僅對錶上的一個index做重建索引:

ALTER INDEX  [Index_name]  ON  [dbo].[Table] REBUILD with (online=on)



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22996654/viewspace-2573754/,如需轉載,請註明出處,否則將追究法律責任。

相關文章