|
|
The Alter Index command can be used to reduce the size of a Non-Clustered Index. To reduce the size of a Non-Clustered Index, we will be using the DATA_COMPRESSION = ROW option to compress the Index by using row compression. The other options are None and Table
Here’s the query. Observe that the REBUILD keyword is used with the WITH clause since we are modifying an existing index.
ALTER INDEX IX_WorkOrder_ProductID
ON Production.WorkOrder
REBUILD
WITH (DATA_COMPRESSION = ROW)
Did you like this post?
|
|
|
||
|
|
|
|
|
|
|
subscribe via rss |
|
subscribe via e-mail |
|
|
print this post |
|
follow me on twitter |






comments
0 Responses to "How to Reduce the Size of a Non-Clustered Index in SQL Server 2008"Post a Comment