최신 1Z0-184-25 무료덤프 - Oracle AI Vector Search Professional
Which PL/SQL package is primarily used for interacting with Generative AI services in Oracle Database 23ai?
정답: B
설명: (DumpTOP 회원만 볼 수 있음)
What is the default distance metric used by the VECTOR_DISTANCE function if none is specified?
정답: B
설명: (DumpTOP 회원만 볼 수 있음)
You are working with vector search in Oracle Database 23ai and need to ensure the integrity of your vector data during storage and retrieval. Which factor is crucial for maintaining the accuracy and reliability of your vector search results?
정답: D
설명: (DumpTOP 회원만 볼 수 있음)
What is the purpose of the Vector Pool in Oracle Database 23ai?
정답: B
설명: (DumpTOP 회원만 볼 수 있음)
What is the significance of using local ONNX models for embedding within the database?
정답: C
설명: (DumpTOP 회원만 볼 수 있음)
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')
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')
정답: D
설명: (DumpTOP 회원만 볼 수 있음)