I had downloaded the 23ai container onto my Mac.
https://blogs.oracle.com/database/post/announcing-oracle-database-23ai-free-container-images-for-armbased-apple-macbook-computers
I was hoping to try out the new Vector Search functionality and I had been trying to follow the steps listed here to upload a model to the DB:
https://docs.oracle.com/en/database/oracle/oracle-database/23/vecse/sql-quick-start-using-vector-embedding-model-uploaded-database.html
On trying to load the model I am currently facing this issue:
BEGIN
DBMS_VECTOR.LOAD_ONNX_MODEL('VEC_DUMP',
'all_MiniLM_L12_v2.onnx',
'doc_model');
END;
Error report -
ORA-40216: feature not supported
ORA-06512: at "SYS.DBMS_VECTOR", line 906
ORA-06512: at "SYS.DBMS_DATA_MINING", line 5767
ORA-06512: at "SYS.DBMS_VECTOR", line 901
ORA-06512: at line 2
40216. 00000 - "feature not supported"
*Cause: The feature was not supported in the API.
*Action: Modify the code to avoid usage of the feature.
How do I resolve this?