Skip to content

Commit 51db9c3

Browse files
authored
removed DROP_EXISTING for now
1 parent f274e76 commit 51db9c3

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

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

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -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)