Skip to content

Commit 6a8c1ee

Browse files
Fit and finish
1 parent 6bc472f commit 6a8c1ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/relational-databases/system-dynamic-management-views/sys-dm-db-index-physical-stats-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ When an index is fragmented in a way that is affecting query performance, there
205205

206206
Recreating a clustered index redistributes the data and results in full data pages. The level of fullness can be configured by using the `FILLFACTOR` option in `CREATE INDEX`. The drawbacks in this method are that the index is offline during the drop and recreate cycle, and that the operation is atomic. If the index creation is interrupted, the index isn't recreated. For more information, see [CREATE INDEX](../../t-sql/statements/create-index-transact-sql.md).
207207

208-
- Use `ALTER INDEX REORGANIZE`, the replacement for `DBCC INDEXDEFRAG`, to reorder the leaf level pages of the index in a logical order. Because this is an online operation, the index is available while the statement is running. The operation can also be interrupted without losing work already completed. This method compacts pages and can increase page density up to the fill factor, but it doesn't move rows off already-full pages to create free space according to a lower fill factor. Compared to rebuilding an index with a lower fill factor, `ALTER INDEX REORGANIZE` might cause more page splits for some workloads.
208+
- Use `ALTER INDEX REORGANIZE`, the replacement for `DBCC INDEXDEFRAG`, to reorder the leaf level pages of the index in a logical order. Because this is an online operation, the index is available while the statement is running. The operation can also be interrupted without losing work already completed. This method compacts pages and can increase page density up to the fill factor, but it doesn't move rows off already-full pages to create free space according to a lower fill factor. Compared to `ALTER INDEX REBUILD` with a lower fill factor, `ALTER INDEX REORGANIZE` might cause more page splits for some workloads over time.
209209

210210
Unlike recreating or rebuilding an index, `ALTER INDEX REORGANIZE` doesn't update statistics.
211211

0 commit comments

Comments
 (0)