Managing indexes in SQL Server 2005 has changed. All the index management functions are now located in a new and more standardized, ALTER INDEX statement. The DBCC DBREINDEX, DBCC INDEXDEFRAG and DBCC SHOWCONTIG commands are now deprecated and will be removed in future versions.
a) To rebuild an index on a table, we now use the REBUILD keyword like this:
ALTER INDEX PK_CustomerID ON Customers
REBUILD
b) To rebuild all indexes on a table, we can use the ALL keyword like this:
ALTER INDEX ALL ON Customers
REBUILD
c) To handle index fragmentation, use the REORGANIZE keyword like this:
ALTER INDEX IX_CustomerName ON Customers
REORGANIZE
d) To disable an index, use the DISABLE keyword like this:
ALTER INDEX IX_CustomerName ON Customers
DISABLLE
Note: To re-enable the index, use the REBUILD keyword as shown earlier.
e) To view size and fragmentation information, use the sys.dm_db_index_physical_stats catalog view instead. Example:
SELECT * FROM sys.dm_db_index_physical_stats
Home »Unlabelled » SQL2005: Alter.Index
Popular Post
-
Required reading: Bill Moore's EVWorld review and Martin Zimmerman's LA Times piece about their test drives of the Toyota Plug-in ...
-
Lately, I have encountered several questions regarding the performance of Entity Framework (EF) . I have been conducting feasibility study o...
-
Because out of it comes gems like these. Mrs. Dalloway by Virginia Woolf “The only good thing to say about this 'literary' drivel i...
-
in the middle of the gauge above, on the left it says "Park" and on the right "City" ... and in the below photo on the ...
-
http://www.imdb.com/title/tt1979320/ A biography of Formula 1 champion driver Niki Lauda and the 1976 crash that almost claimed his life. t...
-
After I published the benchmark results for Entity Framework (EF) vs. DAAB , I was asked to verify whether the performance of EF can be imp...
-
Lots to see in this photo which demonstrates the anatomy of an Aberdeen Street: in this case, Broomhill Road. Essential Services. The driver...
-
Photo: Diane Edwardson, December 22, 2010. There's nothing more iconic than the LA River/Egret/plastic bag/shopping cart photo. (Cl...
-
According to a new report from Autoweek , the future of the V12 engine under the Daimler nameplate will be left in the hands of Mercedes-Ben...
-
Digital Slot Car Racing in 1/32 Scale by Dave Chang (Crowood Press, 2011, $34.95) Reviewed in April 2012 by Philip Hendrickson Dave Chang’s...
No comments:
Post a Comment