Which DDL operation is NOT permitted on a table containing a VECTOR column in Oracle Database 23ai?
Which Python library is used to vectorize text chunks and the user’s question in the following example?
import oracledb
connection = oracledb.connect(user=un, password=pw, dsn=ds)
table_name = "Page"
with connection.cursor() as cursor:
create_table_sql = f"""
CREATE TABLE IF NOT EXISTS {table_name} (
id NUMBER PRIMARY KEY,
payload CLOB CHECK (payload IS JSON),
vector VECTOR
)"""
try:
cursor.execute(create_table_sql)
except oracledb.DatabaseError as e:
raise
connection.autocommit = True
from sentence_transformers import SentenceTransformer
encoder = SentenceTransformer('all-MiniLM-L12-v2')
Which operation is NOT permitted on tables containing VECTOR columns?
Which function is used to generate vector embeddings within an Oracle database?
What is the primary purpose of a similarity search in Oracle Database 23ai?
What is the significance of using local ONNX models for embedding within the database?
Which is NOT a feature or capability related to AI and Vector Search in Exadata?
If a query vector uses a different distance metric than the one used to create the index, whathappens?
Which of the following actions will result in an error when using VECTOR_DIMENSION_COUNT() in Oracle Database 23ai?
When using SQL*Loader to load vector data for search applications, what is a critical consideration regarding the formatting of the vector data within the input CSV file?
PDF + Testing Engine
|
---|
$66 |
Testing Engine
|
---|
$50 |
PDF (Q&A)
|
---|
$42 |
Oracle Free Exams |
---|
![]() |