Skip to content

Commit cdb0e03

Browse files
Merge pull request #36566 from dimitri-furman/dfurman/pr-10281-indexes
Add a limitation for resumable index operations
2 parents 1784f3b + ee40a05 commit cdb0e03

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

docs/t-sql/statements/alter-index-transact-sql.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Modifies an existing table or view index (rowstore, columnstore, or
44
author: rwestMSFT
55
ms.author: randolphwest
66
ms.reviewer: wiassaf, randolphwest, dfurman
7-
ms.date: 01/06/2026
7+
ms.date: 02/05/2026
88
ms.service: sql
99
ms.subservice: t-sql
1010
ms.topic: reference
@@ -764,9 +764,9 @@ Resumable index rebuild operations have the following limitations:
764764

765765
- The `SORT_IN_TEMPDB = ON` option isn't supported for resumable index operations.
766766
- The DDL command with `RESUMABLE = ON` can't be executed inside an explicit transaction.
767-
- You cannot create a resumable index that contains:
768-
- Computed or **timestamp**/**rowversion** columns as key columns.
769-
- LOB column as an included column.
767+
- You cannot rebuild an index using a resumable index operation if the index contains:
768+
- A computed or `timestamp` (`rowversion`) column as a key column.
769+
- A computed or LOB column as an included column.
770770
- Resumable index operations aren't supported for:
771771
- The `ALTER INDEX REBUILD ALL` command
772772
- The `ALTER TABLE REBUILD` command

docs/t-sql/statements/create-index-transact-sql.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: The CREATE INDEX statement creates a relational index on a table or
44
author: rwestMSFT
55
ms.author: randolphwest
66
ms.reviewer: wiassaf, dfurman
7-
ms.date: 09/26/2025
7+
ms.date: 02/05/2026
88
ms.service: sql
99
ms.subservice: t-sql
1010
ms.topic: reference
@@ -885,9 +885,9 @@ Resumable index create operations have the following limitations:
885885
- After a resumable online index create operation is paused, the initial value of `MAXDOP` can't be changed.
886886
- The `SORT_IN_TEMPDB = ON` option isn't supported for resumable index operations.
887887
- The DDL command with `RESUMABLE = ON` can't be executed inside an explicit transaction.
888-
- You cannot create a resumable index that contains:
889-
- Computed or `timestamp` (`rowversion`) column(s) as key columns.
890-
- LOB column as an included column.
888+
- You cannot create an index using a resumable index operation if the index contains:
889+
- A computed or `timestamp` (`rowversion`) column as a key column.
890+
- A computed or LOB column as an included column.
891891
- Resumable index operations aren't supported for:
892892
- The `ALTER INDEX REBUILD ALL` command
893893
- The `ALTER TABLE REBUILD` command

0 commit comments

Comments
 (0)