Describe a vector table.
get
http://localhost:8080/ords/pdbdba/_/db-api/stable/vecdb/vector-tables/{vector_table_name}
Returns metadata for the specified vector table.
Request
Path Parameters
-
vector_table_name(required): string
Name of the vector table. Must contain only letters, digits, and underscore (_).
There's no request body for this operation.
Security
-
BasicAuth: http
Type:
http -
BearerAuth: http
Type:
http -
OAuth2: oauth2
Type:
oauth2
Response
Supported Media Types
- application/json
- application/problem+json
200 Response
Vector table details.
Headers
-
ETag:
Entity tag for the resource.
Nested Schema : VecDBTableBaseNoLinks
Type:
Show Source
object-
annotations: object
annotations
Additional Properties Allowed:
trueUser metadata attached to the table. -
comment: string
Table comment.
-
created: string
(date-time)
Creation timestamp of the vector table.
-
embed_params: object
embed_params
Additional Properties Allowed:
trueEmbedding model configuration for MODEL tables. -
index_params: object
VectorIndexParams
Additional Properties Allowed:
trueNested index configuration for vector and metadata indexes. -
indexes: object
indexes
Additional Properties Allowed:
trueVector and metadata index details. -
owner: string
-
stats: object
stats
Additional Properties Allowed:
trueStatistics of the vector table. -
status: string
Population status of the vector table.
-
table_name: string
The name of the vector table.
-
updated: string
(date-time)
Update timestamp of the vector table.
-
vector_table_type: string
Allowed Values:
[ "BYOV", "MODEL" ]Creation mode of the table. -
vector_type: string
Allowed Values:
[ "dense" ]
Nested Schema : VecDBTableNoLinks-allOf[1]
Type:
Show Source
object-
table_params: object
table_params
Additional Properties Allowed:
trueTable creation controls.
Nested Schema : annotations
Type:
objectAdditional Properties Allowed:
trueUser metadata attached to the table.
Nested Schema : embed_params
Type:
objectAdditional Properties Allowed:
trueEmbedding model configuration for MODEL tables.
Show Source
Nested Schema : VectorIndexParams
Type:
objectAdditional Properties Allowed:
trueNested index configuration for vector and metadata indexes.
Show Source
-
index_type: string
Allowed Values:
[ "vector", "metadata", "all" ]Action scope for rebuild and drop operations. -
metadata_index_params: object
metadata_index_params
Additional Properties Allowed:
trueMetadata multi-value index settings and path selectors. -
parallel_creation: integer
Minimum Value:
1Parallel DDL degree for vector and metadata index operations. -
vector_index_params: object
vector_index_params
Additional Properties Allowed:
trueVector index settings such as organization, distance metric, distributed HNSW, scalar quantization, and advanced parameters.
Example:
{
"vector_index_params":{
"auto_index":true,
"organization":"INMEMORY GRAPH",
"distance_metric":"COSINE",
"quantization_type":"SCALAR",
"compression_ratio":4,
"distribute_params":{
"distribute_method":"AUTO"
},
"advanced_params":{
"neighbors":32,
"efConstruction":128,
"rescore_factor":10,
"algorithm":"uniform_quantization"
}
},
"metadata_index_params":{
"auto_index":true,
"include_paths":[
"tenant",
"category"
],
"exclude_paths":[
"body"
]
},
"parallel_creation":4
}Nested Schema : indexes
Type:
objectAdditional Properties Allowed:
trueVector and metadata index details.
Show Source
Nested Schema : stats
Type:
objectAdditional Properties Allowed:
trueStatistics of the vector table.
Nested Schema : metadata_index_params
Type:
objectAdditional Properties Allowed:
trueMetadata multi-value index settings and path selectors.
Show Source
Nested Schema : vector_index_params
Type:
objectAdditional Properties Allowed:
trueVector index settings such as organization, distance metric, distributed HNSW, scalar quantization, and advanced parameters.
Show Source
-
accuracy: integer
Minimum Value:
0Maximum Value:100 -
advanced_params: object
advanced_params
Index-family-specific options such as partitions, neighbors, efConstruction, rescore_factor, or algorithm.
-
auto_index: boolean
Enables vector index creation or management.
-
compression_ratio: number
Allowed Values:
[ 2, 4, 8 ] -
distance_metric: string
Allowed Values:
[ "COSINE", "MANHATTAN", "HAMMING", "JACCARD", "DOT", "EUCLIDEAN", "L2_SQUARED", "EUCLIDEAN_SQUARED" ] -
distribute_params: object
distribute_params
-
online_build: boolean
-
organization: string
Allowed Values:
[ "PARTITIONS", "INMEMORY GRAPH" ] -
quantization_type: string
Allowed Values:
[ "NONE", "SCALAR" ]
Nested Schema : advanced_params
Type:
objectIndex-family-specific options such as partitions, neighbors, efConstruction, rescore_factor, or algorithm.
Nested Schema : distribute_params
Type:
Show Source
object-
distribute_method: string
Allowed Values:
[ "ROWID RANGE", "SIMILARITY", "PARTITION", "SUBPARTITION", "DISTRIBUTE", "AUTO" ]
Nested Schema : table_params
Type:
objectAdditional Properties Allowed:
trueTable creation controls.
Show Source
-
auto_generate_id: integer
1 if ID defaults to SYS_GUID(), otherwise 0.
404 Response
Not found or precondition failed.