dbms_vector_internal.gather_vector_index_stats(
index_obj IN NUMBER,
sample_pct IN NUMBER,
degree IN NUMBER,
invalidate_cache IN BOOLEAN,
options IN JSON,
enable_trace IN BOOLEAN);
dbms_vector_internal.get_hitcount(
p_user_id IN NUMBER,
p_method_name IN VARCHAR2,
p_provider_name IN VARCHAR2,
p_credential_id IN NUMBER)
RETURN NUMBER;
dbms_vector_internal.index_accuracy_query(
owner_name IN VARCHAR2,
ind_name IN VARCHAR2,
qv IN VECTOR,
top_k IN NUMBER,
target_accuracy IN NUMBER,
nprobe IN NUMBER,
efsearch IN NUMBER)
RETURN VARCHAR2;
dbms_vector_internal.index_accuracy_report(
owner_name IN VARCHAR2,
table_name IN VARCHAR2,
index_name IN VARCHAR2,
start_time IN TIMESTAMP WITH TIME ZONE,
end_time IN TIMESTAMP WITH TIME ZONE,
task_ts IN TIMESTAMP WITH TIME ZONE)
RETURN NUMBER;
dbms_vector_internal.isert_hitcount(
p_user_id IN NUMBER,
p_method_name IN VARCHAR2,
p_provider_name IN VARCHAR2,
p_credential_id IN NUMBER,
p_total_count IN NUMBER);
dbms_vector_internal.update_hitcount(
p_user_id IN NUMBER,
p_method_name IN VARCHAR2,
p_provider_name IN VARCHAR2,
p_credential_id IN NUMBER,
p_total_count IN NUMBER);