how to rebuild index in sql server Manish Gupta on March 5, 2014 — Leave a Comment Index Rebuild process drops the existing Index and Recreates the index. ALTER INDEX ALL ON [dbName].[tblName] REBUILD Index Reorganize process physically reorganizes the leaf nodes of the index. ALTER INDEX ALL ON [dbName].[tblName] Reorganize
Leave a Reply