You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/sql-server/sql-server-2025-known-issues.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ This article describes known issues for [!INCLUDE [sssql25-md](../includes/sssql
29
29
-[Local ONNX models not supported on Linux operating systems](#local-onnx-models-not-supported-on-linux-operating-systems)
30
30
-[PBKDF2 hashing algorithm can affect login performance](#pbkdf2-hashing-algorithm-can-affect-login-performance)
31
31
-[Access violation exception can occur on readable secondary replicas under certain conditions](#access-violation-exception-can-occur-on-readable-secondary-replicas-under-certain-conditions)
32
+
-[Vector index](#vector-index)
32
33
33
34
## Windows Arm64 not supported
34
35
@@ -131,6 +132,15 @@ ALTER DATABASE SCOPED CONFIGURATION FOR SECONDARY
131
132
SET PARAMETER_SENSITIVE_PLAN_OPTIMIZATION = OFF;
132
133
```
133
134
135
+
## Vector index
136
+
137
+
Currently, when you create a vector index on some datasets, it may return the following errors:
138
+
139
+
- Error 9829: `STRING_AGG aggregation result exceeded the limit of 8000 bytes. Use LOB types to avoid result truncation.`
140
+
- 42234: `Internal SQL error during DiskANN graph build`
141
+
142
+
A fix has been identified and will be part of a future release of [!INCLUDE [sssql25-md](../includes/sssql25-md.md)].
143
+
134
144
## Related content
135
145
136
146
-[What's new in SQL Server 2025 Preview](what-s-new-in-sql-server-2025.md)
Copy file name to clipboardExpand all lines: docs/t-sql/statements/create-vector-index-transact-sql.md
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,19 +71,19 @@ Table on which the index is created. It must be a base table. Views, temporary t
71
71
72
72
Column to use to create the vector index. It must be of **vector** type.
73
73
74
-
### METRIC = { 'cosine' | 'dot' | 'euclidean' }
74
+
### METRIC
75
75
76
76
A string with the name of the distance metric to use to calculate the distance between the two given vectors. The following distance metrics are supported:
77
77
78
78
-`cosine` - Cosine distance
79
79
-`euclidean` - Euclidean distance
80
80
-`dot` - (Negative) Dot product
81
81
82
-
## TYPE = 'DiskANN'
82
+
###TYPE
83
83
84
84
The type of [ANN algorithm](../../sql-server/ai/vectors.md#approximate-vector-index-and-vector-search-approximate-nearest-neighbors) used to build the index. Only `DiskANN` is currently supported. DiskANN is the default value.
85
85
86
-
## MAXDOP = *max_degree_of_parallelism*
86
+
###MAXDOP
87
87
88
88
Overrides the **max degree of parallelism** configuration option for the index operation. For more information, see [Max degree of parallelism](../../database-engine/configure-windows/configure-the-max-degree-of-parallelism-server-configuration-option.md). Use `MAXDOP` to limit the degree of parallelism and the resulting resource consumption for an index build operation.
89
89
@@ -115,6 +115,15 @@ The current preview has the following limitations:
115
115
- A table with a vector index becomes read only. No data modification is allowed while the vector index is present on the table.
116
116
- Vector indexes aren't replicated to subscribers.
117
117
118
+
## Known issues
119
+
120
+
Currently, when you create a vector index on some datasets, it may return the following errors:
121
+
122
+
- Error 9829: `STRING_AGG aggregation result exceeded the limit of 8000 bytes. Use LOB types to avoid result truncation.`
123
+
- 42234: `Internal SQL error during DiskANN graph build`
124
+
125
+
For more information, review [Known issues](../../sql-server/sql-server-2025-known-issues.md#vector-index).
126
+
118
127
## Permissions
119
128
120
129
The user must have `ALTER` permission on the table.
0 commit comments