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
@@ -258,6 +258,10 @@ The current preview has the following limitations:
258
258
259
259
- Tables with vector indexes can't be truncated using `TRUNCATE TABLE`. To remove all data, drop the vector index first, truncate the table, repopulate with at least 100 rows, then recreate the index. For more information, see [TRUNCATE TABLE restrictions](../functions/vector-search-transact-sql.md#truncate-table-restrictions).
260
260
261
+
- Vector indexes can't be deployed with DacPac or BACPAC. Vector indexes require at least 100 rows with non-NULL vectors at creation time. When you import a database using DacPac, BACPAC, or the Import/Export service, the import process creates schema objects (including vector indexes) before loading data, which causes the import to fail.
262
+
263
+
**Workaround**: Drop vector indexes before exporting the database, and recreate the indexes after import.
264
+
261
265
### Minimum data requirements
262
266
263
267
Vector indexes require a minimum number of rows with non-NULL vector values before the index can be created.
@@ -444,8 +448,8 @@ GO
444
448
INSERT INTO Articles (id, title, content, embedding)
445
449
SELECT
446
450
value AS id,
447
-
'Article '+ CAST(valueAS NVARCHAR(10)),
448
-
'Content for article '+ CAST(valueAS NVARCHAR(10)),
0 commit comments