Error during ABN midel creation
441011Mar 31 2005 — edited Mar 31 2005Hello,
when I try to create ABN model, I get oracle error:
ORA-25265: specified signature for a queue which does not support reciever non-repudiation
I use the following call:
BEGIN
dbms_data_mining.create_model(
model_name => 'ABN_TABLE1',
mining_function => dbms_data_mining.classification,
data_table_name => 'table1',
case_id_column_name => 'col1',
target_column_name => 'col2',
settings_table_name => 'st_table1' );
END;
settings table 'st_table1' contains parameters:
ALGO_NAME = ALGO_ADAPTIVE_BAYES_NETWORK
ABNS_MODEL_TYPE = ABNS_SINGLE_FEATURE
data table 'table1' contains about 300 rows and have data of number and varchar2 datatypes.
ODM is installed on Oracle 10.1.0.4 running on windows.
Any suggestions how to correct this or what can cause such error?
Thanks.