Oracle Machine Learning & Advanced Analytics

Size: px
Start display at page:

Download "Oracle Machine Learning & Advanced Analytics"

Transcription

1 Oracle Machine Learning & Advanced Analytics Data Management Platforms Move the Algorithms; Not the Data! Detlef E. Schröder Master Principal Sales Consultant Machine Learning, AI and Cognitive Analytics

2 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle s products remains at the sole discretion of Oracle. 2

3 Oracle s Machine Learning & Data Management Platforms Observations Machine learning, predictive analytics & AI have become must-have requirements Enterprises whose data science teams most rapidly extract predictions and insights win Separate islands for data management and data science just don t work Conclusions Need to evolve towards combined data management + advanced analytics environ that can essentially to store and think about data Must operationalize ML methodologies, insights and predictions throughout enterprise 3

4 Oracle s Machine Learning & Adv. Analytics Algorithms CLASSIFICATION Naïve Bayes Logistic Regression (GLM) Decision Tree Random Forest Neural Network Support Vector Machine Explicit Semantic Analysis CLUSTERING Hierarchical K-Means Hierarchical O-Cluster Expectation Maximization (EM) ANOMALY DETECTION One-Class SVM TIME SERIES State of the art forecasting using Exponential Smoothing. Includes all popular models e.g. Holt-Winters with trends, seasons, irregularity, missing data REGRESSION Linear Model Generalized Linear Model Support Vector Machine (SVM) Stepwise Linear regression Neural Network LASSO ATTRIBUTE IMPORTANCE Minimum Description Length Principal Comp Analysis (PCA) Unsupervised Pair-wise KL Div CUR decomposition for row & AI ASSOCIATION RULES A priori/ market basket PREDICTIVE QUERIES Predict, cluster, detect, features SQL ANALYTICS SQL Windows, SQL Patterns, SQL Aggregates A1 A2 A3 A4 A5 A6 A7 OAA (Oracle Data Mining + Oracle R Enterprise) and ORAAH combined OAA includes support for Partitioned Models, Transactional, Unstructured, Geo-spatial, Graph data. etc, FEATURE EXTRACTION Principal Comp Analysis (PCA) Non-negative Matrix Factorization Singular Value Decomposition (SVD) Explicit Semantic Analysis (ESA) TEXT MINING SUPPORT Algorithms support text type Tokenization and theme extraction Explicit Semantic Analysis (ESA) for document similarity STATISTICAL FUNCTIONS Basic statistics: min, max, median, stdev, t-test, F-test, Pearson s, Chi-Sq, ANOVA, etc. R PACKAGES CRAN R Algorithm Packages through Embedded R Execution Spark MLlib algorithm integration EXPORTABLE ML MODELS REST APIs for deployment

5 Multiple Data Scientist User Roles Supported Oracle s Machine Learning/Advanced Analytics Additional relevant data and engineered features Historical data Assembled historical data Sensor data, Text, unstructured data, transactional data, spatial data, etc. Oracle Database 12c Historical or Current Data to be scored for predictions Predictions & Insights DBAs Application Developers R Users, Data Scientists OML Notebook Users Data Analysts, Citizen Data Scientists

6 OAA Model Build and Real-time SQL Apply Prediction Simple SQL Syntax ML Model Build (PL/SQL) begin dbms_data_mining.create_model('buy_insur1', 'CLASSIFICATION', 'CUST_INSUR_LTV', 'CUST_ID', 'BUY_INSURANCE', CUST_INSUR_LTV_SET'); end; / Model Apply (SQL query) Select prediction_probability(buy_insur1, 'Yes' USING 3500 as bank_funds, 825 as checking_amount, 400 as credit_balance, 22 as age, 'Married' as marital_status, 93 as MONEY_MONTLY_OVERDRAWN, 1 as house_ownership) from dual;

7 Manage and Analyze All Your Data Data Scientists, R Users, Citizen Data Scientists Architecturally, Many Options and Flexibility SQL / R Object Store Big Data SQL / R Boil down the Data Lake Engineered Features Derived attributes that reflect domain knowledge key to best models e.g.: Counts Totals Changes over time 9

8 OAA Algorithm Performance Algorithm Time (sec.) Number of Attributes SVM SGD Solver 83s 900 GLM Classification 180s 9000 SVM IPM Solver 811s 900 GLM Regression 59s 900 K-Means 168s 9000 In-memory 640 million rows, Airline On-Time dataset SPARC M8-2 hardware Courtesy of the SPARC Performance Team Copyright 2018 Oracle and/or its affiliates. All rights reserved.

9 Time (sec.) OAA Algorithm Scalability: Rows and Parallelism Random Forest Row Count (M records) X6-2 hardware Benchmarks from Oracle Labs, Systems Research Group Copyright 2018 Oracle and/or its affiliates. All rights reserved. 11

10 The Core Ingredients of Good Machine Learning Domain Knowledge + Data Machine Learning Algorithms Insights, Predictions Machine Learning Algorithms A1 A2 A3 A4 A5 A6 A7 A1 A2 A3 A4 A5 A6 A7 Copyright 2017, Oracle and/or its affiliates. All rights reserved.

11 A1 A2 A3 A4 A5 A6 A7 Most Important Factor in Machine Learning? Deployment!! A Thinking Database Machine Learning Algorithms Copyright 2017, Oracle and/or its affiliates. All rights reserved.

12 Current Release Product Details

13 ADWC + Oracle Machine Learning Notebooks Developer Tools Data Autonomous Warehouse Data Services Warehouse Cloud (EDWs, DW, departmental marts and sandboxes) Service Management Built-in Access Tools Analytics Oracle SQL Developer Data Integration Services Oracle Exadata Cloud Service Oracle Database Cloud Service Service Console Express Cloud Service Oracle Machine Learning Oracle Analytics Cloud Oracle Data Integration Platform Cloud Autonomous Database Cloud 3 rd Party DI on Oracle Cloud Compute Oracle Object Storage Cloud Flat Files and Staging 3 rd Party DI On-premises 15

14 Oracle Machine Learning Machine Learning Notebook for Autonomous Data Warehouse Cloud Key Features Collaborative UI for data scientists Packaged with Autonomous Data Warehouse Cloud (V1) Easy access to shared notebooks, templates, permissions, scheduler, etc. SQL ML algorithms API (V1) Supports deployment of ML analytics

15 Oracle Machine Learning Machine Learning Notebook for Autonomous Data Warehouse Cloud Key Features Collaborative UI for data scientists Packaged with Autonomous Data Warehouse Cloud (V1) Easy access to shared notebooks, templates, permissions, scheduler, etc. SQL ML algorithms API (V1) Supports deployment of ML analytics

16 Oracle Data Miner GUI Drag and Drop, Workflows, Easy to Use UI for Citizen Data Scientist Easy to use to define analytical methodologies that can be shared SQL Developer Extension Workflow API and generates SQL code for immediate deployment Oracle Cloud

17 Rapidly Build, Evaluate & Deploy Analytical Methodologies Leveraging a Variety of Data Sources and Types SQL Joins and arbitrary SQL transforms & queries power of SQL Transactional POS data Modeling Approaches Inline predictive model to augment input data Unstructured data also mined by algorithms Consider: Demographics Past purchases Recent purchases Comments & tweets Generates SQL scripts and workflow API for deployment Copyright 2017, Oracle and/or its affiliates. All rights reserved.

18

19

20 Oracle R Enterprise R Language API Component to OAA Machine Learning Functions and SQL Oracle Cloud R language R to SQL transparency layer for push down to SQL for in-db processing Direct access to in-db data ROracle pkg for OCI connectivity Call outs to R pkgs via Embedded R

21 R: Transparency via function overloading Invoke in-database aggregation function Oracle Cloud > aggdata <- aggregate(ontime_s$dest, + by = list(ontime_s$dest), + FUN = length) > class(aggdata) [1] "ore.frame" attr(,"package") [1] "OREbase" > head(aggdata) Group.1 x 1 ABE ABI 34 3 ABQ ABY 10 5 ACK 3 6 ACT 33 Oracle Advanced Analytics ORE Client Packages Transparency Layer Oracle SQL select DEST, count(*) from ONTIME_S group by DEST Oracle Database ONTIME_S In-db Stats Database Server

22 Oracle Advanced Analytics How Oracle R Enterprise Compute Engines Work Oracle Cloud Other R packages R-> SQL Oracle Database 12c R R Engine Other R packages Oracle R Enterprise (ORE) packages Results Results Oracle R Enterprise packages 1 R-> SQL Transparency Push-Down 2 In-Database Adv Analytical SQL Functions 3 Embedded R Package Callouts R language for interaction with the database R-SQL Transparency Framework overloads R functions for scalable in-database execution Function overload for data selection, manipulation and transforms Interactive display of graphical results and flow control as in standard R Submit user-defined R functions for execution at database server under control of Oracle Database 30+ Powerful data mining algorithms (regression, clustering, AR, DT, etc._ Run Oracle Data Mining SQL data mining functioning (ORE.odmSVM, ORE.odmDT, etc.) Speak R but executes as proprietary indatabase SQL functions machine learning algorithms and statistical functions Leverage database strengths: SQL parallelism, scale to large datasets, security Access big data in Database and Hadoop via SQL, R, and Big Data SQL R Engine(s) spawned by Oracle DB for database-managed parallelism ore.groupapply high performance scoring Efficient data transfer to spawned R engines Emulate map-reduce style algorithms and applications Enables production deployment and automated execution of R scripts

23 Newest GA Features Oracle Advanced Analytics 12.2, 18c Oracle Data Miner 17.4 UI ORAAH 2.8 ORE 1.5 Oracle Machine Learning V1

24 Oracle Advanced Analytics 12.2 New Oracle Database Features Significant Performance Improvements for all Algorithms New parallel model build / apply redesigned infrastructure to enable faster new algorithm introduction Scale to larger data volumes found in big data and cloud use cases Unsupervised Feature Selection Unsupervised algorithm for pair-wise correlations (Kullback-Leibler Divergence (KLD)) for numeric & categorical attributes to find highest information containing attributes Association Rules Enhancements Adds calculation of values associated with AR rules such as sales amount to indicate the value of co-occurring items in baskets Can filter input items prior to market basket analysis Partitioned Models Instead of building, naming and referencing 10s or 1000s of models, partitioned models organize and represent multiple models as partitions in a single model entity Partition 1 Partition 2 Partition N

25 Oracle Advanced Analytics 12.2 New Oracle Database Features Explicit Semantic Analysis (ESA) algorithm Useful technique for extracting meaningful, interpretable features; better than LDA English Wikipedia is Text corpus default to equate tokens with human identifiable features and concepts ESA improves text processing, classification, document similarity and topic identification Compare documents that may not even mention same topics e.g. al-qa ida or Osama bin Laden: Document 1 'Senior members of the Saudi royal family paid at least $560 million to Osama bin Laden terror group and the Taliban for an agreement his forces would not attack targets in Saudi Arabia, according to court documents. The papers, filed in a $US3000 billion ($5500 billion) lawsuit in the US, allege the deal was made after two secret meetings between Saudi royals and leaders of al-qa ida, including bin Laden. The money enabled al-qa ida to fund training camps in Afghanistan later attended by the September 11 hijackers. The disclosures will increase tensions between the US and Saudi Arabia.' Document 2 'The Saudi Interior Ministry on Sunday confirmed it is holding a 21-year-old Saudi man the FBI is seeking for alleged links to the Sept. 11 hijackers. Authorities are interrogating Saud Abdulaziz Saud al-rasheed "and if it is proven that he was connected to terrorism, he will be referred to the sharia (Islamic) court," the official Saudi Press Agency quoted an unidentified ministry official as saying. ESA Similarity Score = 0.62

26 New in 18c: Machine Learning and Advanced Analytics Autonomous Data Warehouse Cloud + OML In-DB Machine Learning Algorithms (SQL API) Scalable Random Forests for Classification Scalable Neural Networks for both classification and regression CUR decomposition algorithm for attribute and row importance Time Series: State of the art forecasting 1 using Exponential Smoothing. Includes all popular models e.g. Holt-Winters. Supports trend, damped trend and seasonality. Performs automatic aggregations based on user define time periods or handles irregularly spaced data as direct input. Handles missing values. OML Microservices for applications deployment 1 Gartner paper

27 New in 18c: Oracle Advanced Analytics Oracle R Enterprise New algorithms via ORE API: Expectation Maximization Explicit Semantic Analysis Text mining capabilities OREdplyr support for dplyr functionality using ore.frames R version compatibility upgraded to R Faster ORE launch and connection times OAAgraph for Parallel Graph Analytics

28 Oracle R Advanced Analytics for Hadoop (ORAAH) New Features in ORAAH 2.8 ORAAH analytics as standalone Java library New MPI/Spark-based Algorithms ELM and H-ELM on Spark+MPI Distributed Stochastic PCA & SVD Updated ORAAH GLM and LM algorithms Neural Networks full formula processing in Spark Full formula support and summary for orch.lm2() and orch.glm2 Support for IMPALA and Spark DataFrames Gradient Boosted Trees (Spark MLlib) 30

29 ORAAH: Spark + MPI Combined Performance Spark Strengths Excellent for embarrassingly parallel problems Poor at iterative problems MPI Strengths Excels for highly interconnected problems with thousands of nodes Strong scaling for iterative problems Spark + MPI Combined Performance FASTER! Best of both worlds + 31

30 Why Oracle? Because that s where the data is! Larry Ellison, Executive Chairman and CTO of Oracle Corporation 32

31 Getting Started Oracle ML/AA Resources & Links Oracle Advanced Analytics Overview Information Oracle's Machine Learning and Advanced Analytics 12.2c and Oracle Data Miner 4.2 New Features preso Oracle Advanced Analytics Public Customer References Oracle s Machine Learning and Advanced Analytics Data Management Platforms white paper on OTN Oracle INTERNAL ONLY OAA Product Management Wiki and Beehive Workspace (contains latest presentations, demos, product, etc. information) YouTube recorded Oracle Advanced Analytics Presentations and Demos, White Papers Oracle's Machine Learning & Advanced Analytics 12.2 & Oracle Data Miner 4.2 New Features YouTube video Library of YouTube Movies on Oracle Advanced Analytics, Data Mining, Machine Learning (7+ live Demos e.g. Oracle Data Miner 4.0 New Features, Retail, Fraud, Loyalty, Overview, etc.) Overview YouTube video of Oracle s Advanced Analytics and Machine Learning Getting Started/Training/Tutorials Link to OAA/Oracle Data Miner Workflow GUI Online (free) Tutorial Series on OTN Link to OAA/Oracle R Enterprise (free) Tutorial Series on OTN Link to Try the Oracle Cloud Now! Link to Getting Started w/ ODM blog entry Link to New OAA/Oracle Data Mining 2-Day Instructor Led Oracle University course. Oracle Data Mining Sample Code Examples Additional Resources, Documentation & OTN Discussion Forums Oracle Advanced Analytics Option on OTN page OAA/Oracle Data Mining on OTN page, ODM Documentation & ODM Blog OAA/Oracle R Enterprise page on OTN page, ORE Documentation & ORE Blog Oracle SQL based Basic Statistical functions on OTN Oracle R Advanced Analytics for Hadoop (ORAAH) on OTN Analytics and Data Summit, All Analytics, All Data, No Nonsense. March 12-14, 2019, Redwood Shores, CA Copyright 2016, Oracle and/or its affiliates. All rights reserved.

32 Formerly called the BIWA Summit with the Spatial and Graph Summit. Same great technical content great new name!

33

Oracle Machine Learning Notebook

Oracle Machine Learning Notebook Oracle Machine Learning Notebook Included in Autonomous Data Warehouse Cloud Charlie Berger, MS Engineering, MBA Sr. Director Product Management, Machine Learning, AI and Cognitive Analytics charlie.berger@oracle.com

More information

Oracle s Machine Learning and Advanced Analytics Release 12.2 and Oracle Data Miner 4.2 New Features

Oracle s Machine Learning and Advanced Analytics Release 12.2 and Oracle Data Miner 4.2 New Features Oracle s Machine Learning and Advanced Analytics Release 12.2 and Oracle Data Miner 4.2 New Features Move the Algorithms; Not the Data! Charlie Berger, MS Engineering, MBA Sr. Director Product Management,

More information

Oracle Machine Learning Notebook

Oracle Machine Learning Notebook Oracle Machine Learning Notebook Included in Autonomous Data Warehouse Cloud Charlie Berger, MS Engineering, MBA Sr. Director Product Management, Machine Learning, AI and Cognitive Analytics charlie.berger@oracle.com

More information

Fault Detection using Advanced Analytics at CERN's Large Hadron Collider: Too Hot or Too Cold BIWA Summit 2016

Fault Detection using Advanced Analytics at CERN's Large Hadron Collider: Too Hot or Too Cold BIWA Summit 2016 Fault Detection using Advanced Analytics at CERN's Large Hadron Collider: Too Hot or Too Cold BIWA Summit 2016 Mark Hornick, Director, Advanced Analytics January 27, 2016 Safe Harbor Statement The following

More information

Take Your Analytics to the Next Level of Insight using Machine Learning in the Oracle Autonomous Data Warehouse

Take Your Analytics to the Next Level of Insight using Machine Learning in the Oracle Autonomous Data Warehouse Take Your Analytics to the Next Level of Insight using Machine Learning in the Oracle Autonomous Data Warehouse Charlie Berger, MS Engineering, MBA Sr. Director Product Management, Machine Learning, AI

More information

Transformational Machine Learning Use Cases You Can Deploy Now CON6234

Transformational Machine Learning Use Cases You Can Deploy Now CON6234 Transformational Machine Learning Use Cases You Can Deploy Now CON6234 Charlie Berger Sr. Director Product Management Machine Learning, AI and Cognitive Analytics Sebastian Turullols Sr. Director Hardware

More information

Oracle s Machine Learning and Advanced Analytics Data Management Platforms. Move the Algorithms; Not the Data

Oracle s Machine Learning and Advanced Analytics Data Management Platforms. Move the Algorithms; Not the Data Oracle s Machine Learning and Advanced Analytics Data Management Platforms Move the Algorithms; Not the Data Disclaimer The following is intended to outline our general product direction. It is intended

More information

Introducing Oracle Machine Learning

Introducing Oracle Machine Learning Introducing Oracle Machine Learning A Collaborative Zeppelin notebook for Oracle s machine learning capabilities Charlie Berger Marcos Arancibia Mark Hornick Advanced Analytics and Machine Learning Copyright

More information

Big Data Analytics with Oracle Advanced Analytics 12c and Big Data SQL

Big Data Analytics with Oracle Advanced Analytics 12c and Big Data SQL Big Data Analytics with Oracle Advanced Analytics 12c and Big Data SQL Make Big Data + Analytics Simple Charlie Berger, MS Engineering, MBA Sr. Director Product Management, Data Mining and Advanced Analytics

More information

Oracle Big Data Science

Oracle Big Data Science Oracle Big Data Science Tim Vlamis and Dan Vlamis Vlamis Software Solutions 816-781-2880 www.vlamis.com @VlamisSoftware Vlamis Software Solutions Vlamis Software founded in 1992 in Kansas City, Missouri

More information

Getting Started with Advanced Analytics in Finance, Marketing, and Operations

Getting Started with Advanced Analytics in Finance, Marketing, and Operations Getting Started with Advanced Analytics in Finance, Marketing, and Operations Southwest Regional Oracle Applications User Group Dan Vlamis February 24, 2017 @VlamisSoftware Vlamis Software Solutions Vlamis

More information

Oracle Big Data, Machine Learning, DW OOW újdonságok

Oracle Big Data, Machine Learning, DW OOW újdonságok Oracle Big Data, Machine Learning, DW OOW újdonságok Fekete Zoltán Platform principal presales consultant Safe Harbor Statement The following is intended to outline our general product direction. It is

More information

Oracle Big Data Science IOUG Collaborate 16

Oracle Big Data Science IOUG Collaborate 16 Oracle Big Data Science IOUG Collaborate 16 Session 4762 Tim and Dan Vlamis Tuesday, April 12, 2016 Vlamis Software Solutions Vlamis Software founded in 1992 in Kansas City, Missouri Developed 200+ Oracle

More information

C5##54&6*"6*1%2345*D&'*E2)2*F"4G)&"69

C5##54&6*6*1%2345*D&'*E2)2*F4G)&69 ?23(&65*@52%6&6'*A&)(*B*267* C5##54&6*"6*1%2345*D&'*E2)2*F"4G)&"69!"#$%&'%(?2%3"9*

More information

Oracle R Enterprise Platform and Configuration Requirements Oracle R Enterprise runs on 64-bit platforms only.

Oracle R Enterprise Platform and Configuration Requirements Oracle R Enterprise runs on 64-bit platforms only. Oracle R Enterprise Release Notes Release 1.5.1 E83205-02 April 2017 These release notes contain important information about Release 1.5.1 of Oracle R Enterprise. New Features in Oracle R Enterprise 1.5.1

More information

Oracle R Technologies

Oracle R Technologies Oracle R Technologies R for the Enterprise Mark Hornick, Director, Oracle Advanced Analytics @MarkHornick mark.hornick@oracle.com Safe Harbor Statement The following is intended to outline our general

More information

Introducing Oracle R Enterprise 1.4 -

Introducing Oracle R Enterprise 1.4 - Hello, and welcome to this online, self-paced lesson entitled Introducing Oracle R Enterprise. This session is part of an eight-lesson tutorial series on Oracle R Enterprise. My name is Brian Pottle. I

More information

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

Event: PASS SQL Saturday - DC 2018 Presenter: Jon Tupitza, CTO Architect

Event: PASS SQL Saturday - DC 2018 Presenter: Jon Tupitza, CTO Architect Event: PASS SQL Saturday - DC 2018 Presenter: Jon Tupitza, CTO Architect BEOP.CTO.TP4 Owner: OCTO Revision: 0001 Approved by: JAT Effective: 08/30/2018 Buchanan & Edwards Proprietary: Printed copies of

More information

Oracle Big Data Discovery

Oracle Big Data Discovery Oracle Big Data Discovery Turning Data into Business Value Harald Erb Oracle Business Analytics & Big Data 1 Safe Harbor Statement The following is intended to outline our general product direction. It

More information

Outrun Your Competition With SAS In-Memory Analytics Sascha Schubert Global Technology Practice, SAS

Outrun Your Competition With SAS In-Memory Analytics Sascha Schubert Global Technology Practice, SAS Outrun Your Competition With SAS In-Memory Analytics Sascha Schubert Global Technology Practice, SAS Topics AGENDA Challenges with Big Data Analytics How SAS can help you to minimize time to value with

More information

ADVANCED ANALYTICS USING SAS ENTERPRISE MINER RENS FEENSTRA

ADVANCED ANALYTICS USING SAS ENTERPRISE MINER RENS FEENSTRA INSIGHTS@SAS: ADVANCED ANALYTICS USING SAS ENTERPRISE MINER RENS FEENSTRA AGENDA 09.00 09.15 Intro 09.15 10.30 Analytics using SAS Enterprise Guide Ellen Lokollo 10.45 12.00 Advanced Analytics using SAS

More information

Oracle s Machine Learning and Advanced Analytics

Oracle s Machine Learning and Advanced Analytics Oracle s Machine Learning and Advanced Analytics Machine Learning Algorithms Embedded in Data Management Platforms O R A C L E W H I T E P A P E R M A Y 2017 Disclaimer The following is intended to outline

More information

Taking R to New Heights for Scalability and Performance

Taking R to New Heights for Scalability and Performance Taking R to New Heights for Scalability and Performance Mark Hornick Director, Advanced Analytics and Machine Learning mark.hornick@oracle.com @MarkHornick blogs.oracle.com/r January 31,2017 Safe Harbor

More information

KNIME for the life sciences Cambridge Meetup

KNIME for the life sciences Cambridge Meetup KNIME for the life sciences Cambridge Meetup Greg Landrum, Ph.D. KNIME.com AG 12 July 2016 What is KNIME? A bit of motivation: tool blending, data blending, documentation, automation, reproducibility More

More information

Oracle Big Data Connectors

Oracle Big Data Connectors Oracle Big Data Connectors Oracle Big Data Connectors is a software suite that integrates processing in Apache Hadoop distributions with operations in Oracle Database. It enables the use of Hadoop to process

More information

Graph Analytics and Machine Learning A Great Combination Mark Hornick

Graph Analytics and Machine Learning A Great Combination Mark Hornick Graph Analytics and Machine Learning A Great Combination Mark Hornick Oracle Advanced Analytics and Machine Learning November 3, 2017 Safe Harbor Statement The following is intended to outline our research

More information

This document (including, without limitation, any product roadmap or statement of direction data) illustrates the planned testing, release and

This document (including, without limitation, any product roadmap or statement of direction data) illustrates the planned testing, release and AI and Visual Analytics: Machine Learning in Business Operations Steven Hillion Senior Director, Data Science Anshuman Mishra Principal Data Scientist DISCLAIMER During the course of this presentation,

More information

Combining Graph and Machine Learning Technology using R

Combining Graph and Machine Learning Technology using R Combining Graph and Machine Learning Technology using R Hassan Chafi Oracle Labs Mark Hornick Oracle Advanced Analytics February 2, 2017 Safe Harbor Statement The following is intended to outline our research

More information

Introducing Microsoft SQL Server 2016 R Services. Julian Lee Advanced Analytics Lead Global Black Belt Asia Timezone

Introducing Microsoft SQL Server 2016 R Services. Julian Lee Advanced Analytics Lead Global Black Belt Asia Timezone Introducing Microsoft SQL Server 2016 R Services Julian Lee Advanced Analytics Lead Global Black Belt Asia Timezone SQL Server 2016: Everything built-in built-in built-in built-in built-in built-in $2,230

More information

Oracle Data Mining Concepts. 18c

Oracle Data Mining Concepts. 18c Oracle Data Mining Concepts 18c E83730-01 February 2018 Oracle Data Mining Concepts, 18c E83730-01 Copyright 2005, 2018, Oracle and/or its affiliates. All rights reserved. Primary Author: Sarika Surampudi

More information

In-Database Analytics: Predictive Analytics, Data Mining, Oracle Exadata and Oracle Business Intelligence

In-Database Analytics: Predictive Analytics, Data Mining, Oracle Exadata and Oracle Business Intelligence In-Database Analytics: Predictive Analytics, Data Mining, Oracle Exadata and Oracle Business Intelligence Detlef E. Schröder Leitender Systemberater STCC DB Mitte detlef.e.schroeder@oracle.com www.oracledwh.de

More information

Data Science Bootcamp Curriculum. NYC Data Science Academy

Data Science Bootcamp Curriculum. NYC Data Science Academy Data Science Bootcamp Curriculum NYC Data Science Academy 100+ hours free, self-paced online course. Access to part-time in-person courses hosted at NYC campus Machine Learning with R and Python Foundations

More information

Autonomous Database Level 100

Autonomous Database Level 100 Autonomous Database Level 100 Sanjay Narvekar December 2018 1 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

Autonomous Data Warehouse in the Cloud

Autonomous Data Warehouse in the Cloud AUTONOMOUS DATA WAREHOUSE CLOUD` Connecting Your To Autonomous in the Cloud DWCS What is It? Oracle Autonomous Database Warehouse Cloud is fully-managed, highperformance, and elastic. You will have all

More information

New Features in Oracle Data Miner 4.2. The new features in Oracle Data Miner 4.2 include: The new Oracle Data Mining features include:

New Features in Oracle Data Miner 4.2. The new features in Oracle Data Miner 4.2 include: The new Oracle Data Mining features include: Oracle Data Miner Release Notes Release 4.2 E64607-03 March 2017 This document provides late-breaking information and information that is not yet part of the formal documentation. This document contains

More information

Oracle R Enterprise. New Features in Oracle R Enterprise 1.5. Release Notes Release 1.5

Oracle R Enterprise. New Features in Oracle R Enterprise 1.5. Release Notes Release 1.5 Oracle R Enterprise Release Notes Release 1.5 E49659-04 December 2016 These release notes contain important information about Release 1.5 of Oracle R Enterprise. New Features in Oracle R Enterprise 1.5

More information

Scalable Machine Learning in R. with H2O

Scalable Machine Learning in R. with H2O Scalable Machine Learning in R with H2O Erin LeDell @ledell DSC July 2016 Introduction Statistician & Machine Learning Scientist at H2O.ai in Mountain View, California, USA Ph.D. in Biostatistics with

More information

Distributed Machine Learning" on Spark

Distributed Machine Learning on Spark Distributed Machine Learning" on Spark Reza Zadeh @Reza_Zadeh http://reza-zadeh.com Outline Data flow vs. traditional network programming Spark computing engine Optimization Example Matrix Computations

More information

Deploying Spatial Applications in Oracle Public Cloud

Deploying Spatial Applications in Oracle Public Cloud Deploying Spatial Applications in Oracle Public Cloud David Lapp, Product Manager Oracle Spatial and Graph Oracle Spatial Summit at BIWA 2017 Safe Harbor Statement The following is intended to outline

More information

Oracle9i Data Mining. Data Sheet August 2002

Oracle9i Data Mining. Data Sheet August 2002 Oracle9i Data Mining Data Sheet August 2002 Oracle9i Data Mining enables companies to build integrated business intelligence applications. Using data mining functionality embedded in the Oracle9i Database,

More information

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda Agenda Oracle9i Warehouse Review Dulcian, Inc. Oracle9i Server OLAP Server Analytical SQL Mining ETL Infrastructure 9i Warehouse Builder Oracle 9i Server Overview E-Business Intelligence Platform 9i Server:

More information

Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Copyright 2018, Oracle and/or its affiliates. All rights reserved. Beyond SQL Tuning: Insider's Guide to Maximizing SQL Performance Monday, Oct 22 10:30 a.m. - 11:15 a.m. Marriott Marquis (Golden Gate Level) - Golden Gate A Ashish Agrawal Group Product Manager Oracle

More information

Spotfire: Brisbane Breakfast & Learn. Thursday, 9 November 2017

Spotfire: Brisbane Breakfast & Learn. Thursday, 9 November 2017 Spotfire: Brisbane Breakfast & Learn Thursday, 9 November 2017 CONFIDENTIALITY The following information is confidential information of TIBCO Software Inc. Use, duplication, transmission, or republication

More information

Build a system health check for Db2 using IBM Machine Learning for z/os

Build a system health check for Db2 using IBM Machine Learning for z/os Build a system health check for Db2 using IBM Machine Learning for z/os Jonathan Sloan Senior Analytics Architect, IBM Analytics Agenda A brief machine learning overview The Db2 ITOA model solutions template

More information

Spotfire Data Science with Hadoop Using Spotfire Data Science to Operationalize Data Science in the Age of Big Data

Spotfire Data Science with Hadoop Using Spotfire Data Science to Operationalize Data Science in the Age of Big Data Spotfire Data Science with Hadoop Using Spotfire Data Science to Operationalize Data Science in the Age of Big Data THE RISE OF BIG DATA BIG DATA: A REVOLUTION IN ACCESS Large-scale data sets are nothing

More information

CONSOLIDATING RISK MANAGEMENT AND REGULATORY COMPLIANCE APPLICATIONS USING A UNIFIED DATA PLATFORM

CONSOLIDATING RISK MANAGEMENT AND REGULATORY COMPLIANCE APPLICATIONS USING A UNIFIED DATA PLATFORM CONSOLIDATING RISK MANAGEMENT AND REGULATORY COMPLIANCE APPLICATIONS USING A UNIFIED PLATFORM Executive Summary Financial institutions have implemented and continue to implement many disparate applications

More information

Deploying, Managing and Reusing R Models in an Enterprise Environment

Deploying, Managing and Reusing R Models in an Enterprise Environment Deploying, Managing and Reusing R Models in an Enterprise Environment Making Data Science Accessible to a Wider Audience Lou Bajuk-Yorgan, Sr. Director, Product Management Streaming and Advanced Analytics

More information

DATA INTEGRATION PLATFORM CLOUD. Experience Powerful Data Integration in the Cloud

DATA INTEGRATION PLATFORM CLOUD. Experience Powerful Data Integration in the Cloud DATA INTEGRATION PLATFORM CLOUD Experience Powerful Integration in the Want a unified, powerful, data-driven solution for all your data integration needs? Oracle Integration simplifies your data integration

More information

Session 7: Oracle R Enterprise OAAgraph Package

Session 7: Oracle R Enterprise OAAgraph Package Session 7: Oracle R Enterprise 1.5.1 OAAgraph Package Oracle Spatial and Graph PGX Graph Algorithms Oracle R Technologies Mark Hornick Director, Oracle Advanced Analytics and Machine Learning July 2017

More information

Sparkling Water. August 2015: First Edition

Sparkling Water.   August 2015: First Edition Sparkling Water Michal Malohlava Alex Tellez Jessica Lanford http://h2o.gitbooks.io/sparkling-water-and-h2o/ August 2015: First Edition Sparkling Water by Michal Malohlava, Alex Tellez & Jessica Lanford

More information

Using Existing Numerical Libraries on Spark

Using Existing Numerical Libraries on Spark Using Existing Numerical Libraries on Spark Brian Spector Chicago Spark Users Meetup June 24 th, 2015 Experts in numerical algorithms and HPC services How to use existing libraries on Spark Call algorithm

More information

Improving Your Business with Oracle Data Integration See How Oracle Enterprise Metadata Management Can Help You

Improving Your Business with Oracle Data Integration See How Oracle Enterprise Metadata Management Can Help You Improving Your Business with Oracle Data Integration See How Oracle Enterprise Metadata Management Can Help You Özgür Yiğit Oracle Data Integration, Senior Manager, ECEMEA Safe Harbor Statement The following

More information

Big Data Infrastructures & Technologies

Big Data Infrastructures & Technologies Big Data Infrastructures & Technologies Spark and MLLIB OVERVIEW OF SPARK What is Spark? Fast and expressive cluster computing system interoperable with Apache Hadoop Improves efficiency through: In-memory

More information

CHAPTER. Oracle Data Miner

CHAPTER. Oracle Data Miner CHAPTER 1 Oracle Data Miner 4 Predictive Analytics Using Oracle Data Miner Understanding your data and gaining an insight into the behavior of your data (and hence your customers) have been goals that

More information

R Language for the SQL Server DBA

R Language for the SQL Server DBA R Language for the SQL Server DBA Beginning with R Ing. Eduardo Castro, PhD, Principal Data Analyst Architect, LP Consulting Moderated By: Jose Rolando Guay Paz Thank You microsoft.com idera.com attunity.com

More information

Activator Library. Focus on maximizing the value of your data, gain business insights, increase your team s productivity, and achieve success.

Activator Library. Focus on maximizing the value of your data, gain business insights, increase your team s productivity, and achieve success. Focus on maximizing the value of your data, gain business insights, increase your team s productivity, and achieve success. ACTIVATORS Designed to give your team assistance when you need it most without

More information

Taking Your Application Design to the Next Level with Data Mining

Taking Your Application Design to the Next Level with Data Mining Taking Your Application Design to the Next Level with Data Mining Peter Myers Mentor SolidQ Australia HDNUG 24 June, 2008 WHO WE ARE Industry experts: Growing, elite group of over 90 of the world s best

More information

Leverage the Oracle Data Integration Platform Inside Azure and Amazon Cloud

Leverage the Oracle Data Integration Platform Inside Azure and Amazon Cloud Leverage the Oracle Data Integration Platform Inside Azure and Amazon Cloud WHITE PAPER / AUGUST 8, 2018 DISCLAIMER The following is intended to outline our general product direction. It is intended for

More information

Matrix Computations and " Neural Networks in Spark

Matrix Computations and  Neural Networks in Spark Matrix Computations and " Neural Networks in Spark Reza Zadeh Paper: http://arxiv.org/abs/1509.02256 Joint work with many folks on paper. @Reza_Zadeh http://reza-zadeh.com Training Neural Networks Datasets

More information

Scaled Machine Learning at Matroid

Scaled Machine Learning at Matroid Scaled Machine Learning at Matroid Reza Zadeh @Reza_Zadeh http://reza-zadeh.com Machine Learning Pipeline Learning Algorithm Replicate model Data Trained Model Serve Model Repeat entire pipeline Scaling

More information

How to Troubleshoot Databases and Exadata Using Oracle Log Analytics

How to Troubleshoot Databases and Exadata Using Oracle Log Analytics How to Troubleshoot Databases and Exadata Using Oracle Log Analytics Nima Haddadkaveh Director, Product Management Oracle Management Cloud October, 2018 Copyright 2018, Oracle and/or its affiliates. All

More information

Cloud Computing 2. CSCI 4850/5850 High-Performance Computing Spring 2018

Cloud Computing 2. CSCI 4850/5850 High-Performance Computing Spring 2018 Cloud Computing 2 CSCI 4850/5850 High-Performance Computing Spring 2018 Tae-Hyuk (Ted) Ahn Department of Computer Science Program of Bioinformatics and Computational Biology Saint Louis University Learning

More information

Creating a Recommender System. An Elasticsearch & Apache Spark approach

Creating a Recommender System. An Elasticsearch & Apache Spark approach Creating a Recommender System An Elasticsearch & Apache Spark approach My Profile SKILLS Álvaro Santos Andrés Big Data & Analytics Solution Architect in Ericsson with more than 12 years of experience focused

More information

Machine Learning In A Snap. Thomas Parnell Research Staff Member IBM Research - Zurich

Machine Learning In A Snap. Thomas Parnell Research Staff Member IBM Research - Zurich Machine Learning In A Snap Thomas Parnell Research Staff Member IBM Research - Zurich What are GLMs? Ridge Regression Support Vector Machines Regression Generalized Linear Models Classification Lasso Regression

More information

Specialist ICT Learning

Specialist ICT Learning Specialist ICT Learning APPLIED DATA SCIENCE AND BIG DATA ANALYTICS GTBD7 Course Description This intensive training course provides theoretical and technical aspects of Data Science and Business Analytics.

More information

Populating the Galaxy Zoo

Populating the Galaxy Zoo Populating the Galaxy Zoo Real-time Image Classification with SQL Server R Services David M Smith @revodavid R Community Lead Microsoft Algorithms and Data Science THANKS to all Sponsors! EVENT SPONSORS

More information

Open And Linked Data Oracle proposition Subtitle

Open And Linked Data Oracle proposition Subtitle Presented with Open And Linked Data Oracle proposition Subtitle Pascal GUY Master Sales Consultant Cloud Infrastructure France May 30, 2017 Copyright 2014, Oracle and/or its affiliates. All rights reserved.

More information

Week 1 Unit 1: Introduction to Data Science

Week 1 Unit 1: Introduction to Data Science Week 1 Unit 1: Introduction to Data Science The next 6 weeks What to expect in the next 6 weeks? 2 Curriculum flow (weeks 1-3) Business & Data Understanding 1 2 3 Data Preparation Modeling (1) Introduction

More information

MySQL CLOUD SERVICE. Propel Innovation and Time-to-Market

MySQL CLOUD SERVICE. Propel Innovation and Time-to-Market MySQL CLOUD SERVICE Propel Innovation and Time-to-Market The #1 open source database in Oracle. Looking to drive digital transformation initiatives and deliver new modern applications? Oracle MySQL Service

More information

An Oracle White Paper October Oracle Social Cloud Platform Text Analytics

An Oracle White Paper October Oracle Social Cloud Platform Text Analytics An Oracle White Paper October 2012 Oracle Social Cloud Platform Text Analytics Executive Overview Oracle s social cloud text analytics platform is able to process unstructured text-based conversations

More information

Personalized Experiences Enabled Through Extensibility

Personalized Experiences Enabled Through Extensibility Personalized Experiences Enabled Through Extensibility Vikram Kaledhonkar Principal Product Manager Oracle Copyright 2014 Oracle and/or its affiliates. All rights reserved. Spread the Word about the Event!

More information

Javaentwicklung in der Oracle Cloud

Javaentwicklung in der Oracle Cloud Javaentwicklung in der Oracle Cloud Sören Halter Principal Sales Consultant 2016-11-17 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information

More information

Optimizing Your Analytics Life Cycle with SAS & Teradata. Rick Lower

Optimizing Your Analytics Life Cycle with SAS & Teradata. Rick Lower Optimizing Your Analytics Life Cycle with SAS & Teradata Rick Lower 1 Agenda The Analytic Life Cycle Common Problems SAS & Teradata solutions Analytical Life Cycle Exploration Explore All Your Data Preparation

More information

The Oracle Trust Fabric Securing the Cloud Journey

The Oracle Trust Fabric Securing the Cloud Journey The Oracle Trust Fabric Securing the Cloud Journey Eric Olden Senior Vice President and General Manager Cloud Security and Identity 05.07.2018 Safe Harbor Statement The following is intended to outline

More information

Python With Data Science

Python With Data Science Course Overview This course covers theoretical and technical aspects of using Python in Applied Data Science projects and Data Logistics use cases. Who Should Attend Data Scientists, Software Developers,

More information

INTRODUCTION... 2 FEATURES OF DARWIN... 4 SPECIAL FEATURES OF DARWIN LATEST FEATURES OF DARWIN STRENGTHS & LIMITATIONS OF DARWIN...

INTRODUCTION... 2 FEATURES OF DARWIN... 4 SPECIAL FEATURES OF DARWIN LATEST FEATURES OF DARWIN STRENGTHS & LIMITATIONS OF DARWIN... INTRODUCTION... 2 WHAT IS DATA MINING?... 2 HOW TO ACHIEVE DATA MINING... 2 THE ROLE OF DARWIN... 3 FEATURES OF DARWIN... 4 USER FRIENDLY... 4 SCALABILITY... 6 VISUALIZATION... 8 FUNCTIONALITY... 10 Data

More information

SAS High-Performance Analytics Products

SAS High-Performance Analytics Products Fact Sheet What do SAS High-Performance Analytics products do? With high-performance analytics products from SAS, you can develop and process models that use huge amounts of diverse data. These products

More information

BUILT FOR THE SPEED OF BUSINESS

BUILT FOR THE SPEED OF BUSINESS BUILT FOR THE SPEED OF BUSINESS 2 Pivotal MPP Databases and In-Database Analytics Shengwen Yang 2013-12-08 Outline About Pivotal Pivotal Greenplum Database The Crown Jewels of Greenplum (HAWQ) In-Database

More information

Massive Scalability With InterSystems IRIS Data Platform

Massive Scalability With InterSystems IRIS Data Platform Massive Scalability With InterSystems IRIS Data Platform Introduction Faced with the enormous and ever-growing amounts of data being generated in the world today, software architects need to pay special

More information

Oracle Autonomous Database

Oracle Autonomous Database Oracle Autonomous Database Maria Colgan Master Product Manager Oracle Database Development August 2018 @SQLMaria #thinkautonomous Safe Harbor Statement The following is intended to outline our general

More information

What is Gluent? The Gluent Data Platform

What is Gluent? The Gluent Data Platform What is Gluent? The Gluent Data Platform The Gluent Data Platform provides a transparent data virtualization layer between traditional databases and modern data storage platforms, such as Hadoop, in the

More information

Verarbeitung von Vektor- und Rasterdaten auf der Hadoop Plattform DOAG Spatial and Geodata Day 2016

Verarbeitung von Vektor- und Rasterdaten auf der Hadoop Plattform DOAG Spatial and Geodata Day 2016 Verarbeitung von Vektor- und Rasterdaten auf der Hadoop Plattform DOAG Spatial and Geodata Day 2016 Hans Viehmann Product Manager EMEA ORACLE Corporation 12. Mai 2016 Safe Harbor Statement The following

More information

ORAAH Change List Summary. ORAAH Change List Summary

ORAAH Change List Summary. ORAAH Change List Summary ORAAH 2.7.0 Change List Summary i ORAAH 2.7.0 Change List Summary ORAAH 2.7.0 Change List Summary ii REVISION HISTORY NUMBER DATE DESCRIPTION NAME ORAAH 2.7.0 Change List Summary iii Contents 1 ORAAH 2.7.0

More information

From Insight to Action: Analytics from Both Sides of the Brain. Vaz Balasingham Director of Solutions Consulting

From Insight to Action: Analytics from Both Sides of the Brain. Vaz Balasingham Director of Solutions Consulting From Insight to Action: Analytics from Both Sides of the Brain Vaz Balasingham Director of Solutions Consulting vbalasin@tibco.com Insight to Action from Both Sides of the Brain Value Grow Revenue Reduce

More information

Chapter 1 - The Spark Machine Learning Library

Chapter 1 - The Spark Machine Learning Library Chapter 1 - The Spark Machine Learning Library Objectives Key objectives of this chapter: The Spark Machine Learning Library (MLlib) MLlib dense and sparse vectors and matrices Types of distributed matrices

More information

Apache SystemML Declarative Machine Learning

Apache SystemML Declarative Machine Learning Apache Big Data Seville 2016 Apache SystemML Declarative Machine Learning Luciano Resende About Me Luciano Resende (lresende@apache.org) Architect and community liaison at Have been contributing to open

More information

#mstrworld. Analyzing Multiple Data Sources with Multisource Data Federation and In-Memory Data Blending. Presented by: Trishla Maru.

#mstrworld. Analyzing Multiple Data Sources with Multisource Data Federation and In-Memory Data Blending. Presented by: Trishla Maru. Analyzing Multiple Data Sources with Multisource Data Federation and In-Memory Data Blending Presented by: Trishla Maru Agenda Overview MultiSource Data Federation Use Cases Design Considerations Data

More information

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

Oracle R Advanced Analytics for Hadoop Release Notes. Oracle R Advanced Analytics for Hadoop Release Notes

Oracle R Advanced Analytics for Hadoop Release Notes. Oracle R Advanced Analytics for Hadoop Release Notes Oracle R Advanced Analytics for Hadoop 2.7.1 Release Notes i Oracle R Advanced Analytics for Hadoop 2.7.1 Release Notes Oracle R Advanced Analytics for Hadoop 2.7.1 Release Notes ii REVISION HISTORY NUMBER

More information

Machine Learning and SystemML. Nikolay Manchev Data Scientist Europe E-

Machine Learning and SystemML. Nikolay Manchev Data Scientist Europe E- Machine Learning and SystemML Nikolay Manchev Data Scientist Europe E- mail: nmanchev@uk.ibm.com @nikolaymanchev A Simple Problem In this activity, you will analyze the relationship between educational

More information

Application Container Cloud

Application Container Cloud APPLICATION CONTAINER CLOUD Application Container Cloud with Java SE and Node The Best Java SE and Node Cloud. Get the choice of either Oracle Java SE Advanced, including Flight Recorder for production

More information

MLlib and Distributing the " Singular Value Decomposition. Reza Zadeh

MLlib and Distributing the  Singular Value Decomposition. Reza Zadeh MLlib and Distributing the " Singular Value Decomposition Reza Zadeh Outline Example Invocations Benefits of Iterations Singular Value Decomposition All-pairs Similarity Computation MLlib + {Streaming,

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 ! 2 Oracle VM Introduction Adam Hawley, Senior Director Virtualization, Oracle January 15, 2013 Safe Harbor Statement The following is intended to outline our general product direction. It is intended

More information

Boost your Analytics with ML for SQL Nerds

Boost your Analytics with ML for SQL Nerds Boost your Analytics with ML for SQL Nerds SQL Saturday Spokane Mar 10, 2018 Julie Koesmarno @MsSQLGirl mssqlgirl.com jukoesma@microsoft.com Principal Program Manager in Business Analytics for SQL Products

More information

Data Analytics at Logitech Snowflake + Tableau = #Winning

Data Analytics at Logitech Snowflake + Tableau = #Winning Welcome # T C 1 8 Data Analytics at Logitech Snowflake + Tableau = #Winning Avinash Deshpande I am a futurist, scientist, engineer, designer, data evangelist at heart Find me at Avinash Deshpande Chief

More information

R mit Exadata und Exalytics Erfahrungen mit R

R mit Exadata und Exalytics Erfahrungen mit R R mit Exadata und Exalytics Erfahrungen mit R Oliver Bracht Managing Director eoda Matthias Fuchs Senior Consultant ISE Information Systems Engineering GmbH extreme Datamining with Oracle R Enterprise

More information

BIG DATA SCIENTIST Certification. Big Data Scientist

BIG DATA SCIENTIST Certification. Big Data Scientist BIG DATA SCIENTIST Certification Big Data Scientist Big Data Science Professional (BDSCP) certifications are formal accreditations that prove proficiency in specific areas of Big Data. To obtain a certification,

More information

Oracle Enterprise Manager 12c IBM DB2 Database Plug-in

Oracle Enterprise Manager 12c IBM DB2 Database Plug-in Oracle Enterprise Manager 12c IBM DB2 Database Plug-in May 2015 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

Harp-DAAL for High Performance Big Data Computing

Harp-DAAL for High Performance Big Data Computing Harp-DAAL for High Performance Big Data Computing Large-scale data analytics is revolutionizing many business and scientific domains. Easy-touse scalable parallel techniques are necessary to process big

More information