diff --git a/docs/t-sql/statements/alter-index-transact-sql.md b/docs/t-sql/statements/alter-index-transact-sql.md index 8d677ce5619..fa781fc12ee 100644 --- a/docs/t-sql/statements/alter-index-transact-sql.md +++ b/docs/t-sql/statements/alter-index-transact-sql.md @@ -3,8 +3,8 @@ title: "ALTER INDEX (Transact-SQL)" description: Modifies an existing table or view index (rowstore, columnstore, or XML) by disabling, rebuilding, or reorganizing the index; or by setting options on the index. author: rwestMSFT ms.author: randolphwest -ms.reviewer: wiassaf, randolphwest, dfurman -ms.date: 04/14/2025 +ms.reviewer: wiassaf, dfurman +ms.date: 01/05/2026 ms.service: sql ms.subservice: t-sql ms.topic: reference @@ -63,10 +63,11 @@ Syntax for SQL Server, Azure SQL Database, and Azure SQL Managed Instance. ```syntaxsql ALTER INDEX { index_name | ALL } ON { - REBUILD { - [ PARTITION = ALL [ WITH ( [ , ...n ] ) ] ] + REBUILD [ + [ WITH ( [ , ...n ] ) ] + | [ PARTITION = ALL [ WITH ( [ , ...n ] ) ] ] | [ PARTITION = partition_number [ WITH ( [ , ...n ] ) ] ] - } + ] | DISABLE | REORGANIZE [ PARTITION = partition_number ] [ WITH ( ) ] | SET ( [ , ...n ] ) @@ -147,10 +148,11 @@ Syntax for Azure Synapse Analytics and Analytics Platform System (PDW). ALTER INDEX { index_name | ALL } ON [ schema_name. ] table_name { - REBUILD { - [ PARTITION = ALL [ WITH ( ) ] ] + REBUILD [ + [ WITH ( [ , ...n ] ) ] + | [ PARTITION = ALL [ WITH ( ) ] ] | [ PARTITION = partition_number [ WITH ( ) ] ] - } + ] | DISABLE | REORGANIZE [ PARTITION = partition_number ] }