If you look into further details, you will notice that there is no entry for Data Mining in the DBA_REGISTRY but there is a value in V$OPTION:
SQL> col value format a30In general, the option is installed with the use of the Database Configuration Assistant (dbca).
SQL> col parameter format a30
SQL> select * from v$option where PARAMETER = 'Data Mining';
PARAMETER VALUE
------------------------------ ------------------------------
Data Mining TRUE
However if there is a need to install Data Mining manually, then you need to perform following steps.
1) Go to the $ORACLE_HOME/admin directory of the RDBMS instance where you want to install Data Mining.
2) Ensure that your ORACLE_HOME and ORACLE_SID environmental variable setup is correct.
On unix/linux issue,
$ echo $ORACLE_HOME
$ echo $ORACLE_SID
3) Login as SYS and run catodm.sql, dbmsodm.sql, prvtodm.plb scripts from SQL*Plus:
SQL> conn / as sysdba
SQL> @catodm.sql
SQL> @dbmsodm.sql
SQL> @prvtodm.plb
No comments:
Post a Comment