Skip to content

Commit 923c065

Browse files
ClaudioESSilvarwestMSFT
authored andcommitted
Fix documentation for resumable index limitations
I'm seeing a limitation when trying to use RESUMABLE and I have a computed column in the `INCLUDED` columns definition. It errors as not supported. ``` Msg 10675, Level 16, State 1, Line 3 Internal Query Processor Error: The query processor could not produce a query plan. The RESUMABLE option is not supported for this index build. Remove the RESUMABLE option and rerun the statement. ``` If I remove that column from the `INCLUDED` columns, it works fine.
1 parent 1784f3b commit 923c065

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ Resumable index create operations have the following limitations:
887887
- The DDL command with `RESUMABLE = ON` can't be executed inside an explicit transaction.
888888
- You cannot create a resumable index that contains:
889889
- Computed or `timestamp` (`rowversion`) column(s) as key columns.
890-
- LOB column as an included column.
890+
- 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)