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
@@ -32,8 +32,10 @@ The **vector** data type is designed to store vector data optimized for operatio
32
32
To provide a familiar experience for developers, the **vector** data type is created and displayed as a JSON array. For example, a vector with three dimensions can be represented as `'[0.1, 2, 30]'`. Implicit and explicit conversion from and to the **vector** type can be done using **varchar**, **nvarchar** and **json** types.
33
33
34
34
> [!NOTE]
35
-
> - This data type is in preview and is subject to change. Make sure to read preview usage terms in [Service Level Agreements (SLA) for Online Services](https://www.microsoft.com/licensing/docs/view/Service-Level-Agreements-SLA-for-Online-Services). For limitations of the current preview, see [Limitations](#limitations) and [Known issues](#known-issues).
36
-
> - Vector features are available in Azure SQL Managed Instance configured with the [Always-up-to-date](/azure/azure-sql/managed-instance/update-policy#always-up-to-date-update-policy) policy.
35
+
>
36
+
> For limitations, review [Limitations](#limitations) and [Known issues](#known-issues).
37
+
>
38
+
> Vector features are available in Azure SQL Managed Instance configured with the [Always-up-to-date](/azure/azure-sql/managed-instance/update-policy#always-up-to-date-update-policy) policy.
37
39
38
40
For more information on working with vector data, see:
39
41
@@ -121,9 +123,9 @@ SQL Server stores vectors in an optimized binary format but exposes them as JSON
121
123
122
124
Applications using **TDS version 7.4 or higher** and updated drivers can natively read, write, stream, and bulk copy vector data.
123
125
124
-
These capabilities require preview versions of the drivers. The following driver versions enable native vector support:
126
+
These capabilities require versions of the drivers listed below. Ensure you're using the correct version to enable native vector support.
125
127
126
-
-**Microsoft.Data.SqlClient**: Version **6.1 Preview 2** introduces the `SqlVector` type, extending `System.Data.SqlDbTypes`.
128
+
-**Microsoft.Data.SqlClient**: Version **6.1.0** introduces the `SqlVector` type, extending `System.Data.SqlDbTypes`.
127
129
-**Microsoft JDBC Driver for SQL Server**: Version **13.1.0 Preview** introduces the `microsoft.sql.Types.VECTOR` type and `microsoft.sql.Vector` class.
128
130
129
131
> [!NOTE]
@@ -134,7 +136,7 @@ You can start using the new **vector** type right away. The following examples s
134
136
### [.NET](#tab/csharp)
135
137
136
138
> [!IMPORTANT]
137
-
> Requires **Microsoft.Data.SqlClient 6.1 Preview 2** or later for native vector support.
139
+
> Requires **Microsoft.Data.SqlClient 6.1.0** or later for native vector support.
138
140
139
141
```csharp
140
142
staticvoidInsertNonNullVal(SqlConnectionconn)
@@ -353,8 +355,6 @@ The **vector** type has the following limitations:
353
355
354
356
## Known issues
355
357
356
-
In the ongoing preview there are the following known issues:
357
-
358
358
- Data Masking currently shows **vector** data as **varbinary** data type in the Azure portal.
0 commit comments