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
The following example returns all indexes for the table [dbo].[wikipedia_articles_embeddings] used in the DiskANN sample available in the GitHub sample repo.
SELECT
object_id,
index_id,
vector_index_type,
distance_metric,
build_parameters
FROMsys.vector_indexesAS vi
WHERE
object_id = OBJECT_ID('[dbo].[wikipedia_articles_embeddings]')