Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Is it possible to use OML in free workspace on apex.oracle.com?

JohannaBStumpfJun 24 2025

I have a free workspace on apex.oracle.com.
I want to use OML.

Running this:

begin
dbms_data_mining.create_model(
model_name => 'SVM1',
MINING_FUNCTION => dbms_data_mining.regression,
data_table_name => 'MLINPUT',
CASE_ID_COLUMN_NAME => 'ID',
TARGET_COLUMN_NAME => 'KWP100',
SETTINGS_TABLE_NAME => 'MLSETTINGSSVM');
end;

Creates the following error:

ORA-01031: insufficient privileges ORA-06512: at "SYS.DBMS_DATA_MINING", line 355 ORA-06512: at "SYS.DBMS_DATA_MINING", line 605 ORA-06512: at "SYS.DBMS_DATA_MINING", line 564 ORA-06512: at line 2 1. begin 2. dbms_data_mining.create_model( 3. model_name => 'SVM1', 4. MINING_FUNCTION => dbms_data_mining.regression, 5. data_table_name => 'MLINPUT',

Is there a way to get the privileges to run OML?

This post has been answered by jariola on Jun 28 2025
Jump to Answer
Comments
Post Details
Added on Jun 24 2025
2 comments
134 views