Database Error Messages

ORA-51932

Insert or update on owner_name.table_name.column_name with vector index owner_name.index_name failed. There is a dimension mismatch. Expected expected_dim dimensions; provided actual_dim dimensions.
  • owner_name: The owner of the table.
  • table_name: The table name.
  • column_name: The indexed column name.
  • owner_name: The owner of the index.
  • index_name: The index name.
  • expected_dim: The expected dimension.
  • actual_dim: The actual dimension provided.

Cause

An attempt is being made to insert or update a row with a vector value whose dimension count does not match the dimension count of an existing vector index on this column.


Action

Use a vector value with the dimension count that matches the dimension count of the vector index.