Skip to content

Commit 52d3b01

Browse files
Merge pull request #34631 from yorek/create-vector-index-update-dm-20250708
Remove DROP_EXISTING from CREATE VECTOR INDEX doc
2 parents e1f1b14 + 2456d2c commit 52d3b01

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

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

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: "CREATE VECTOR INDEX creates an index on vector data to allow appro
44
author: WilliamDAssafMSFT
55
ms.author: wiassaf
66
ms.reviewer: damauri
7-
ms.date: 05/28/2025
7+
ms.date: 07/08/2025
88
ms.service: sql
99
ms.subservice: t-sql
1010
ms.topic: reference
@@ -56,7 +56,6 @@ ON object ( vector_column )
5656
[,] METRIC = { 'cosine' | 'dot' | 'euclidean' }
5757
[ [,] TYPE = 'DiskANN' ]
5858
[ [,] MAXDOP = max_degree_of_parallelism ]
59-
[ [,] DROP_EXISTING = { ON | OFF } ]
6059
) ]
6160
[ ON { filegroup_name | "default" } ]
6261
[;]
@@ -111,18 +110,6 @@ For more information, see [Configure Parallel Index Operations](../../relational
111110
> [!NOTE]
112111
> Parallel index operations aren't available in every edition of [!INCLUDE[msCoName](../../includes/msconame-md.md)] [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]. For a list of features that are supported by the editions of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)], see [Editions and supported features of SQL Server 2022](../../sql-server/editions-and-components-of-sql-server-2022.md) or [Editions and supported features of SQL Server 2025 Preview](../../sql-server/editions-and-components-of-sql-server-2025.md).
113112
114-
## DROP_EXISTING = { ON | OFF }
115-
116-
Is an option to drop and rebuild the existing vector index with modified specifications, and keep the same name for the index. The default is `OFF`.
117-
118-
- `ON`
119-
120-
Specifies to drop and rebuild the existing index, which must have the same name as the parameter *index_name*.
121-
122-
- `OFF`
123-
124-
Specifies not to drop and rebuild the existing index. SQL Server displays an error if the specified index name already exists.
125-
126113
## Limitations
127114

128115
The current preview has the following limitations:

0 commit comments

Comments
 (0)