Microsoft introduced the concept of disabling an Index in SQL Server 2005.
They syntax to disable the index is as follows:
ALTER INDEX indexname ON tablename DISABLE
e.g.
ALTER INDEX idx_TEST ON dbo.TEST DISABLE
However, contrary to popular belief syntax to enable the index is not
ALTER INDEX idx_TEST ON dbo.TEST ENABLE
The correct syntax to enable an Index is
ALTER INDEX idx_TEST ON dbo.TEST REBUILD
Remember the keyword REBUILD for it.
No comments:
Post a Comment