<index name>$VECTORS

This dictionary table provides information about the vector index part of a hybrid vector index, showing the contents of the $VR table with row ids, chunks, and embeddings.

Note:

The <index name>$VECTORS view resides in a user's schema. Therefore, if a hybrid vector index is named IDX, then the view name is IDX$VECTORS.

<index name>$VECTORS view is not supported for Local Hybrid Vector Indexes.

Column Name Data Type Description

DOC_ROWID

ROWID

Document table's row ID, excluding lazy deletes

DOC_CHUNK_ID

NUMBER

ID for each chunk text

DOC_CHUNK_COUNT

NUMBER

Number of chunks into which each document is split

DOC_CHUNK_OFFSET

NUMBER

Original position of each chunk in the source document, relative to the start of document (which has a position of 1)

DOC_CHUNK_LENGTH

NUMBER

Character length of each chunk text

DOC_CHUNK_TEXT

VARCHAR2(4000)

Human-readable content in each chunk

DOC_CHUNK_EMBEDDING

VECTOR(*, *)

Generated vector embedding for each chunk