Oracle Data Mining
Oracle Data Mining is an option of Oracle Database Enterprise Edition. It contains several data mining and data analysis algorithms for classification, prediction, regression, associations, feature selection, anomaly detection, feature extraction, and specialized analytics. It provides means for the creation, management and operational deployment of data mining models inside the database environment.
Overview
has implemented a variety of data mining algorithms inside its Oracle Database relational database product. These implementations integrate directly with the Oracle database kernel and operate natively on data stored in the relational database tables. This eliminates the need for extraction or transfer of data into standalone mining/analytic servers. The relational database platform is leveraged to securely manage models and to efficiently execute SQL queries on large volumes of data. The system is organized around a few generic operations providing a general unified interface for data-mining functions. These operations include functions to create, apply, test, and manipulate data-mining models. Models are created and stored as database objects, and their management is done within the database - similar to tables, views, indexes and other database objects.In data mining, the process of using a model to derive predictions or descriptions of behavior that is yet to occur is called "scoring". In traditional analytic workbenches, a model built in the analytic engine has to be deployed in a mission-critical system to score new data, or the data is moved from relational tables into the analytical workbench - most workbenches offer proprietary scoring interfaces. ODM simplifies model deployment by offering Oracle SQL functions to score data stored right in the database. This way, the user/application-developer can leverage the full power of Oracle SQL - in terms of the ability to pipeline and manipulate the results over several levels, and in terms of parallelizing and partitioning data access for performance.
Models can be created and managed by one of several means. Oracle Data Miner provides a graphical user interface that steps the user through the process of creating, testing, and applying models. Application- and tools-developers can embed predictive and descriptive mining capabilities using PL/SQL or Java APIs. Business analysts can quickly experiment with, or demonstrate the power of, predictive analytics using Oracle Spreadsheet Add-In for Predictive Analytics, a dedicated Microsoft Excel adaptor interface. ODM offers a choice of well-known machine learning approaches such as Decision Trees, Naive Bayes, Support vector machines, Generalized linear model for predictive mining, Association rules, K-means and Orthogonal Partitioning
Clustering, and Non-negative matrix factorization for descriptive mining. A minimum description length based technique to grade the relative importance of input mining attributes for a given problem is also provided. Most Oracle Data Mining functions also allow text mining by accepting text attributes as input. Users do not need to configure text-mining options - the Database_options database option handles this behind the scenes.
History
Oracle Data Mining was first introduced in 2002 and its releases are named according to the corresponding Oracle database release:- Oracle Data Mining 9iR2
- Oracle Data Mining 10gR1
- Oracle Data Mining 10gR2
- Oracle Data Mining 11gR1
- Oracle Data Mining 11gR2
is a complete redesign and rewrite from ground-up - while Darwin was a classic GUI-based analytical workbench, ODM offers a data mining development/deployment platform integrated into the Oracle database, along with the Oracle Data Miner GUI.
The Oracle Data Miner 11gR2 New Workflow GUI was previewed at Oracle Open World 2009. An updated Oracle Data Miner GUI was released in 2012. It is free, and is available as an extension to Oracle SQL Developer 3.1.
Functionality
As of release 11gR1 Oracle Data Mining contains the following data mining functions:- Data transformation and model analysis:
- * Data sampling, binning, discretization, and other data transformations.
- * Model exploration, evaluation and analysis.
- Feature selection.
- * Minimum description length.
- Classification.
- * Naive Bayes.
- * Generalized linear model for Logistic regression.
- * Support Vector Machine.
- * Decision Trees.
- Anomaly detection.
- * One-class Support Vector Machine.
- Regression
- * Support Vector Machine.
- * Generalized linear model for Multiple regression
- Clustering:
- * Enhanced k-means.
- * Orthogonal Partitioning Clustering.
- Association rule learning:
- * Itemsets and association rules.
- Feature extraction.
- * Non-negative matrix factorization.
- Text and spatial mining:
- * Combined text and non-text columns of input data.
- * Spatial/GIS data.
Input sources and data preparation
Oracle Data Mining distinguishes numerical, categorical, and unstructured attributes. The product also provides utilities for data preparation steps prior to model building such as outlier treatment, discretization, normalization and binning
Graphical user interface: Oracle Data Miner
Users can access Oracle Data Mining through Oracle Data Miner, a GUI client application that provides access to the data mining functions and structured templates that automatically prescribe the order of operations, perform required data transformations, and set model parameters. The user interface also allows the automated generation of Java and/or SQL code associated with the data-mining activities. The Java Code Generator is an extension to Oracle JDeveloper. An independent interface also exists: the Spreadsheet Add-In for Predictive Analytics which enables access to the Oracle Data Mining Predictive Analytics PL/SQL package from Microsoft Excel.From version 11.2 of the Oracle database, Oracle Data Miner integrates with Oracle SQL Developer.
PL/SQL and Java interfaces
Oracle Data Mining provides a native PL/SQL package to create, destroy, describe, apply, test, export and import models. The code below illustrates a typical call to build a classification model:BEGIN
DBMS_DATA_MINING.CREATE_MODEL ;
END;
where 'credit_risk_model' is the model name, built for the express purpose of classifying future customers' 'credit_risk', based on training data provided in the table 'credit_card_data', each case distinguished by a unique 'customer_id', with the rest of the model parameters specified through the table 'credit_risk_model_settings'.
Oracle Data Mining also supports a Java API consistent with the Java Data Mining standard for data mining for enabling integration with web and Java EE applications and to facilitate portability across platforms.
SQL scoring functions
As of release 10gR2, Oracle Data Mining contains built-in SQL functions for scoring data mining models. These single-row functions support classification, regression, anomaly detection, clustering, and feature extraction. The code below illustrates a typical usage of a classification model:SELECT customer_name
FROM credit_card_data
WHERE PREDICTION = 'LOW' AND customer_value = 'HIGH';