Avoiding Common OBIEE Mistakes. Learning from Post-Implementation Assessments

Size: px
Start display at page:

Download "Avoiding Common OBIEE Mistakes. Learning from Post-Implementation Assessments"

Transcription

1 Avoiding Common OBIEE Mistakes Learning from Post-Implementation Assessments

2 Agenda Agenda BI First Impressions BI Defined Transformation Components Case Studies o Data Storage o Metadata Definitions o Dashboards & Reports o User Analysis Summary Questions Archetype Consulting, Inc Confidential > 2

3 First Impressions of Business Intelligence Raw Data business intelligence is Better Business Decisions brilliant! Lets install it right away! Archetype Consulting, Inc Confidential > 3

4 A Closer look at BI Forrester s Definition business intelligence is defined as: Strategic Insights Operational Insights Tactical Insights Transformation occurs through: Methodologies Processes Architectures Technologies + Best Practices = BI Success Archetype Consulting, Inc Confidential > 4

5 BI Transformation Components How it all comes together Data Storage Metadata Definitions Dashboards & Reports User Analysis Archetype Consulting, Inc Confidential > 5

6 Data Storage

7 Wayne Enterprises An Overview Applications Siebel Marketing, Call Center & Analytics Business Unit Marketing The Problem The Cause The Catch Wayne Enterprises marketing department could not execute their 20 daily campaigns within 24 hours Frequently requested, 3 rd party data was being stored in a remote area of the marketing database causing slow running marketing programs The 3 rd party data was correctly being stored in a proven Oracle out of the box data schema. Archetype Consulting, Inc Confidential > 7

8 Technical Terms often heard at Wayne Enterprises Target Level Segment Qualified List Item (QLI) Marketing Cache Campaign Load Format a list of fields that can be used to create a segment contains business logic that describes the required criteria of a marketing campaign the targeted entity of a segment address as Qualified List Item Data that satisfies segment criteria will be store the QLI value into a temporary Marketing Cache table The layout of campaign data exported to the transactional application system Segment is not null AND Request = Brand A MC_TARGET_LEVEL QLI MichaelTGriffith@example.com CharlesFVazquez@example.com LarryDSchulte@example.com MiriamRDietz@example.com GUID 2801WQS 2801WQS 2801WQS 2801WQS Example Fields First Name Last Name Address Request ID Package ID Consumer ID Archetype Consulting, Inc Confidential > 8

9 Uncovering the Issue Wayne Enterprises Tracing the Campaign Execution 1. Marketing Campaign Segment is scheduled in Siebel Marketing (OLTP) and a query is executed against OLAP database (Siebel Analytics) 2. Query results are stored in MC_Target_Level table 3. Attributes are added to the segment results in MC_Target_Level defined in the campaign load so that it can be loaded into OLTP (Call Center, Siebel Marketing) Archetype Consulting, Inc Confidential > 9

10 Capturing the SQL Wayne Enterprises Campaign Load Format DISCOVERIES Poor SQL RED highlights show Outer joins to dimension extension tables (_DX) Out of the box 3 rd party assigned columns This SQL statement executes for each of the 20 daily campaigns (select distinct T "ROW_WID" as c1, T "LAST_NAME" as c2, T "FST_NAME" as c3, T "PRSP_CON_UID" as c4, T "INTEGRATION_ID" as c5, T "INTEGRATION_ID" as c6, T "ADDRESS_KEY" as c7, T "PERSISTENT_ID" as c8, T "ROW_WID" as c9, concat(coalesce(cast(t "integration_id" as VARCHAR ( 20 ) ), ''), coalesce('~', '')) as c10, T "ADDRESS_KEY" as c11, T "ROW_WID" as c12, T "ST_ADDRESS" as c13, T "ST_ADDRESS2" as c14, T "CITY" as c15, T "STATE" as c16, T "ZIPCODE" as c17, T "COUNTRY" as c18, T "INTEGRATION_ID" as c20, T "PROVIDED_MODEL_NUM" as c21, T "SERIAL_NUM" as c22, T "ROW_WID" as c23, concat(coalesce(cast(t "integration_id" as VARCHAR ( 20 ) ), ''), coalesce('0', '')) as c24 from "SIEBEL"."W_PERSON_D" T259555, "SIEBEL"."W_PERSON_DX" T259574, "SIEBEL"."W_ORG_DX" T259552, "SIEBEL"."W_ORG_D" T259551, "SIEBEL"."W_ASSET_D" T259557, "SIEBEL"."W_ASSET_F" T where ( and "SIEBEL"."W_PERSON_D"."ROW_WID" += "SIEBEL"."W_PERSON_DX"."ROW_WID" and "SIEBEL"."W_ASSET_D"."ROW_WID" = "SIEBEL"."W_ASSET_F"."ASSET_WID" and "SIEBEL"."W_ORG_D"."ROW_WID" = "SIEBEL"."W_ASSET_F"."ACCNT_WID" and "SIEBEL"."W_ORG_D"."ROW_WID" += "SIEBEL"."W_ORG_DX"."ROW_WID" and "SIEBEL"."W_PERSON_D"."ROW_WID" = "SIEBEL"."W_ASSET_F"."CONTACT_WID" and "SIEBEL"."W_PERSON_D". FST_NAME is not null and "SIEBEL"."W_PERSON_D"."PRSP_CON_UID" is not null and "SIEBEL"."W_PERSON_D"."LAST_NAME" is not null Archetype Consulting, Inc Confidential > 10

11 Technical Solution Wayne Enterprises Moving the 3 rd Party data All 3 rd party data in the campaign load format was moved from the dimension extension tables to the dimensions themselves. Wayne Enterprise s marketing programs were completing in 1/3 of the original execution time, allowing for all daily campaigns to be completed Archetype Consulting, Inc Confidential > 11

12 The Origin of the Problem Wayne Enterprises Preventative measures Both Business and IT failed to communicate The Business failed to communicate workload of marketing campaigns. The Business also felt IT s first priority was not to help the enable business activities IT followed best practices by limiting any customization to out of the box data mappings IT failed to understand how 3 rd party was going to be used Organizational Solution SME s from IT and business created weekly check in meetings to more closely understand each other s issues and discover areas for improvement Archetype Consulting, Inc Confidential > 12

13 Metadata Definitions

14 Vandelay Industries Problems with the Metadata The Problem The Cause The Catch Dashboard reports are showing that customers are requesting movies from one trilogy but receiving movies from another trilogy The dashboard reports were comparing consumer requests (at the request level) to consumer fulfillment (at the consumer level). The issue occurred when segment results of two target levels with different granularity are stored in the same history table Archetype Consulting, Inc Confidential > 14

15 Vandelay Industries Movies by Mail Division A Recent Promotion MOVIE TRILOGY SPECIAL! FOR THE PRICE OF START NOW BY PICKING A MOVIE TRILOGY receive your 1 st movie in a few days your 2 nd movie will arrive in a week in two weeks, you ll receive the 3 rd Archetype Consulting, Inc Confidential > 15

16 Keanu Reeves entered The Matrix Trilogy Vandelay Industries OLAP DATA WAREHOUSE CUSTOMER ORDERS Data stored in customer order fact ORDER ID ORDER DATE CUSTOMER ID CUSTOMER SOURCE REQUEST /12/ SEAN ASTIN TRILOGY PROMO LORD OF THE RINGS /8/ KEANU REEVES TRILOGY PROMO THE MATRIX /20/ HARRISON FORD TRILOGY PROMO INDIANA JONES /18/ HARRISON FORD TRILOGY PROMO STAR WARS Archetype Consulting, Inc Confidential > 16

17 The Matrix Segment Chooses Keanu How Keanu gets his first movie OLAP DATA WAREHOUSE SEGMENT: Matrix 1 Vandelay Industries CUSTOMER ORDERS Target Order ID s where SOURCE = TRILOGY PROMO REQUEST = THE MATRIX ORDER ID NOT IN MOVIES SHIPPED ORDER ID CUSTOMER SOURCE REQUEST 1001 KEANU REEVES TRILOGY PROMO THE MATRIX Order ID triggers the first movie to be sent Marketing Cache (segment results) QLI GUID 1001 SEGMENT: Matrix Archetype Consulting, Inc Confidential > 17

18 Campaign Load Format Saving the History How Keanu gets his first movie First Name Last Name Source Order Id Movie Vandelay Industries Marketing Cache (segment results) QLI GUID 1001 SEGMENT: Matrix Using the Order ID, the Campaign Load Format adds Order Attributes CUSTOMER ORDERS SHIPPING HISTORY Shipping Vendor Campaign Load File SHIP ID 1021 SHIPMENT DETAILS CUSTOMER ITEM SEQUENCE ORDER ID KEANU THE 1 of REEVES MATRIX Archetype Consulting, Inc Confidential > 18

19 A Different Matrix Segment Chooses Keanu One Week Later Vandelay Industries OLAP DATA WAREHOUSE SHIPPING HISTORY SEGMENT: Matrix 2 (Reloaded) Target CUSTOMER IDs where ITEM = THE MATRIX SHIP DATE = TODAY() 7 Customer ID in Shipping History triggers the 2 nd movie to be sent SHIP ID SHIP DATE CUSTOMER ID CUSTOMER ITEM SEQUENCE ORDER ID KEANU THE /8/ of REEVES MATRIX QLI Marketing Cache (segment results) GUID 14 SEGMENT: Matrix 2 (Reloaded) Archetype Consulting, Inc Confidential > 19

20 Campaign Load Format Saving the History First Name Last Name Source Order ID Movie Using the Order ID, the Campaign Load Format adds Order Attributes SHIPPING HISTORY Marketing Cache (segment results) QLI Vandelay Industries GUID 27 SEGMENT: Matrix 2 (Reloaded) Shipping Vendor Campaign Load File SHIPMENT DETAILS SHIP ID CUSTOMER ITEM SEQUENCE ORDER ID 1021 KEANU REEVES THE MATRIX 1 of KEANU REEVES THE MATRIX RELOADED 2 of Archetype Consulting, Inc Confidential > 20

21 The Harrison Ford Problem When a Customer Orders more than 1 Trilogy Vandelay Industries Requests ORDER ID ORDER DATE CUSTOMER ID CUSTOMER SOURCE REQUEST /16/ HARRISON FORD TRILOGY PROMO INDIANA JONES /18/ HARRISON FORD TRILOGY PROMO STAR WARS Shipping History SHIP SHIPPED CUSTOMER ID DATE ID ITEM SEQUENCE ORDER ID ORDER REQUEST 957 2/17/ RAIDERS OF THE LOST ARK 1 of INDIANA JONES 962 2/19/ STAR WARS 1 of STAR WARS 989 2/25/ TEMPLE OF DOOM 2 of STAR WARS 992 2/27/ THE EMPIRE STRIKES BACK 2 of STAR WARS /5/ THE LAST CRUSADE 3 of INDIANA JONES /7/ RETURN OF THE JEDI 3 of INDIANA JONES????!!!! Archetype Consulting, Inc Confidential > 21

22 The Harrison Ford Problem explained Vandelay Industries Using Customer ID to create Campaign Load File Campaign Load Format First Name Last Name Source Order ID Movie QLI Marketing Cache (segment results) GUID 27 SEGMENT: IND. JONES 2 (Temple of Doom) SHIPPING HISTORY Customer ID cannot accurately select the Order ID if there are multiple. The system selects one, often times incorrectly. SHIP SHIPPED CUSTOMER ID DATE ID ITEM SEQUENCE ORDER ID ORDER REQUEST 957 2/17/ RAIDERS OF THE LOST ARK 1 of INDIANA JONES 962 2/19/ STAR WARS 1 of STAR WARS Campaign Load File CUSTOMER ID ITEM ORDER ID ORDER REQUEST 27 TEMPLE OF DOOM 1003 STAR WARS Archetype Consulting, Inc Confidential > 22

23 Fixing the Harrison Ford Problem Change the Target of the Segment Vandelay Industries SEGMENT: IND. JONES 2 (Temple of Doom) Target CUSTOMER IDs ORDER IDs where ITEM = RAIDERS OF THE LOST ARK SHIP DATE = TODAY() 7 Change CUSTOMER ID to ORDER ID Marketing Cache (segment results) QLI GUID 1002 SEGMENT: IND. JONES 2 (Temple of Doom) SHIP SHIPPED CUSTOMER ID DATE ID ITEM SEQUENCE ORDER ID ORDER REQUEST 957 2/17/ RAIDERS OF THE LOST ARK 1 of INDIANA JONES 962 2/19/ STAR WARS 1 of STAR WARS Archetype Consulting, Inc Confidential > 23

24 The Other Issue Preventative measures Vandelay Industries Both Business and IT failed to communicate Business failed to express importance of requests to movie tracking functionality during implementation IT failed to recognize the inconsistencies within its own data and understand basic business need Organizational Solution Business started hiring more technical SME s for internal communications with IT Archetype Consulting, Inc Confidential > 24

25 Dashboards & Reports

26 Quality KPI s Everything else is misleading The Myth Brand Metrics Year to Date KPI - Inbound Calls Reaction Wow, Brand B is doing great! The Truth Marketing Spend 33% 34% Brand A Brand B Brand C 33% Total Marketing Spend $30, Call Center Volume (inbound calls) Brand A Brand B Brand C KPI Qualified Leads Reaction The automated messaging system for Brand B is not capturing leads! Qualified Leads Brand A Brand B Brand C Unique Consumers with a valid address or Archetype Consulting, Inc Confidential > 26

27 Show Volume not just % Comparing Similar Units Which Brand is doing better? Brand A Brand B Qualified Leads Unqualified Qualified Leads Unqualified 10% 49% 51% Now what do you think? 90% Lead Types by Brand 0 Qualified Leads Unqualified Brand A 72 8 Brand B Archetype Consulting, Inc Confidential > 27

28 Rounding to the Millions Remember the little guys Example A shows expected scenario Example A. Rounded Actual Premiums earned ,321, Net investment income 40 39,989, Net realized investment gains/(losses) - 21, Fee and other revenues 3 3,018, Total Revenues ,350, Example B shows unexpected scenario Example B. Rounded Actual Premiums earned - 412, Net investment income - 448, Net realized investment gains/(losses) - 401, Fee and other revenues - 422, Total Revenues 2 1,685, If needed, consider rounding to a lower value Archetype Consulting, Inc Confidential > 28

29 User Analysis

30 Do you know your End Users? A few questions to ask yourself Do you have smart/proactive end users? Yes s Do they work in a fast, results driven climate? Yes Do s you know what they are responsible for? I have an idea During s their busy peaks do you see a big increase in requests? A little Did you answer anything like this? It might be time to conduct an internal assessment to uncover some areas for improvement and automation opportunities Archetype Consulting, Inc Confidential > 30

31 Discovering Offline Activities of your Users Opportunity Gold Mine Example Financial Reporting Process Map Discoveries Included Group Handoffs Manual Calculations Reporting off Excel Files (5 Layers Deep) Multiple data sources Archetype Consulting, Inc Confidential > 31

32 Solutions to the Madness Technical Answers & Preventative Methods Technical Push all manual activities to the data source & reporting tool Review reporting deliverables and make them available in the reports Preventative Methods Determine an agreed upon review period and conduct workshops to expose activity opportunity areas Prioritize biggest impact areas first APPLICATION LAYER METADATA LAYER DATA LAYER BUSINESS USERS MAPPING DATA WAREHOUSE HR SALES FINANCE PROJECT TRACKING Archetype Consulting, Inc Confidential > 32

33 Lessons Learned In BI, most problems start because of a lack of understanding between Business and IT Below are ways to remove the communication barrier between Business and IT and minimize risk in any Business Intelligence Project Open up communication with IT to help them understand Business Goals and Objectives Give purpose behind all IT requests Understand at a high level what the effort level is when asking something of IT Understand purpose behind all requests by the Business Understand all activities of Business Users, even offline. Enabling technology for Business activities is the first priority of IT, this outweighs all Best Practices Archetype Consulting, Inc Confidential > 33

34 Questions? Brian Halloran

A Process for Data Requirements Analysis. David Loshin Knowledge Integrity, Inc. October 30, 2007

A Process for Data Requirements Analysis. David Loshin Knowledge Integrity, Inc. October 30, 2007 A Process for Data Requirements Analysis David Loshin Knowledge Integrity, Inc. loshin@knowledge-integrity.com October 30, 2007 1 Agenda The criticality of business information Data requirements analysis

More information

Extending the capabilities of Oracle Business Intelligence Applications (OBIA) January 19, 2010

Extending the capabilities of Oracle Business Intelligence Applications (OBIA) January 19, 2010 Extending the capabilities of Oracle Business Intelligence Applications (OBIA) January 19, 2010 Agenda Introduction Overview of OBIEE & OBIA How to extend OBIA? Simple Gaps Complex Enhancements Lessons

More information

MS-20466: Implementing Data Models and Reports with Microsoft SQL Server

MS-20466: Implementing Data Models and Reports with Microsoft SQL Server MS-20466: Implementing Data Models and Reports with Microsoft SQL Server Description The focus of this five-day instructor-led course is on creating managed enterprise BI solutions. It describes how to

More information

Implementing Data Models and Reports with Microsoft SQL Server

Implementing Data Models and Reports with Microsoft SQL Server 20466 - Implementing Data Models and Reports with Microsoft SQL Server Duration: 5 Days Course Price: $2,975 Software Assurance Eligible Course Description Note: This course is designed for customers who

More information

Better Business Analytics with Powerful Business Intelligence Tools

Better Business Analytics with Powerful Business Intelligence Tools Better Business Analytics with Powerful Business Intelligence Tools Business Intelligence Defined There are many interpretations of what BI (Business Intelligence) really is and the benefits that it can

More information

GADD platform Overview

GADD platform Overview GADD platform Overview A GADD White Paper Published January, 2012 gaddsoftware.com Table of content 1. Introduction... 4 2. What makes the GADD platform different?... 4 2.1. How it has evolved... 4 2.2.

More information

The Industry Leader in Data Warehousing, Big Data Analytics, and Marketing Solutions

The Industry Leader in Data Warehousing, Big Data Analytics, and Marketing Solutions Teradata (NYSE: TDC) is the global leader in analytic data platforms, marketing applications, and consulting services, helping organizations become more competitive by increasing the value of their data

More information

2008 Oracle Corporation

2008 Oracle Corporation 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,

More information

Oracle Business Intelligence Applications. Kostiantyn Stupak

Oracle Business Intelligence Applications. Kostiantyn Stupak 1 Oracle Business Intelligence Applications Kostiantyn Stupak 2 Business Analytics Span Multiple Disciplines Financial Performance & Strategy Management Supply Chain Analytic Applications Production Planning

More information

Using Systems Capacity Data for Business Intelligence

Using Systems Capacity Data for Business Intelligence Using Systems Capacity Data for Business Intelligence Informed decisions are critical for success Forrester definition of Business Intelligence: Business Intelligence is a set of methodologies, processes,

More information

Rhonda Stonaker Infosemantics, Inc.

Rhonda Stonaker Infosemantics, Inc. Rhonda Stonaker Infosemantics, Inc. Professional Background 2 OBIEE Architect at Infosemantics, Inc. Experience with BI solutions for Oracle EBS including R12 since 2002 Experience with Packaged Solutions

More information

Putting Workforce Analytics to Work: Achieving Objectives and Realizing Outcomes

Putting Workforce Analytics to Work: Achieving Objectives and Realizing Outcomes Putting Workforce Analytics to Work: Achieving Objectives and Realizing Outcomes Workforce analytics turns people and business data into actionable intelligence. If you re in HR, you ve no doubt noticed

More information

Network and Route Performance Management

Network and Route Performance Management Solution in Detail Passenger Travel and Leisure Executive Summary Solution Overview Contact Us Network and Route Performance Running a Profitable Travel and Leisure Business Running Profitably Controlling

More information

Getting Real Business Value out of Oracle BI and Oracle Data Mining

Getting Real Business Value out of Oracle BI and Oracle Data Mining Getting Real Business Value out of Oracle BI and Oracle Data Mining Brendan Tierney Antony Heljula Who Are We? Brendan Tierney Deputy Editor Currently: Lecturer DBA Data Mining Consultant BI Architect

More information

Transforming Procurement with Oracle Business Intelligence Cloud Services (BICS)

Transforming Procurement with Oracle Business Intelligence Cloud Services (BICS) Transforming Procurement with Oracle Business Intelligence Cloud Services (BICS) Kshitij Kumar Global VP of BI/EPM and CTO Apps Associates LLC April 09, 2015 Copyright 2015. Apps Associates LLC. 1 Agenda

More information

Datametica DAMA. The Modern Data Platform Enterprise Data Hub Implementations. What is happening with Hadoop Why is workload moving to Cloud

Datametica DAMA. The Modern Data Platform Enterprise Data Hub Implementations. What is happening with Hadoop Why is workload moving to Cloud DAMA Datametica The Modern Data Platform Enterprise Data Hub Implementations What is happening with Hadoop Why is workload moving to Cloud 1 The Modern Data Platform The Enterprise Data Hub What do we

More information

The importance of a solid data foundation

The importance of a solid data foundation The importance of a solid data foundation Prepared by: Michael Faloney, Director, RSM US LLP michael.faloney@rsmus.com, +1 804 281 6805 February 2015 This is the first of a three-part series focused on

More information

Cognos 8 Business Intelligence. Evi Pohan

Cognos 8 Business Intelligence. Evi Pohan Cognos 8 Business Intelligence Evi Pohan Agenda Needs and Challenges What is Cognos 8 Business Intelligence? Overview Simplified Deployment and Ease of Use Complete Range of Capabilities Proven Technology

More information

Procurement and Spend Analytics

Procurement and Spend Analytics Atlanta Oracle Applications User Group Procurement and Spend Analytics Customer Case Study Kshitij Kumar & Sravan Daggupati Apps Associates LLC November 20, 2009 Agenda Why BI Apps Welch s Case Study Procurement

More information

Guide to Modernize Your Enterprise Data Warehouse How to Migrate to a Hadoop-based Big Data Lake

Guide to Modernize Your Enterprise Data Warehouse How to Migrate to a Hadoop-based Big Data Lake White Paper Guide to Modernize Your Enterprise Data Warehouse How to Migrate to a Hadoop-based Big Data Lake Motivation for Modernization It is now a well-documented realization among Fortune 500 companies

More information

Selling Through Retail in the Age of the Digital Consumer

Selling Through Retail in the Age of the Digital Consumer Selling Through Retail in the Age of the Digital Consumer Keith Henry VP, Global Industry for Manufacturing keith.henry@teradata.com Discussion Topics for this Presentation The CPG World Today > Massive

More information

RESEARCH NOTE IMPROVING ANALYTICS DEPLOYMENTS WITH IBM PARTNERS

RESEARCH NOTE IMPROVING ANALYTICS DEPLOYMENTS WITH IBM PARTNERS Document L127 RESEARCH NOTE IMPROVING ANALYTICS DEPLOYMENTS WITH IBM PARTNERS THE BOTTOM LINE In analyzing deployments of IBM Business Analytics Software, Nucleus has found that midsize organizations adopting

More information

BI360 Suite and Dynamics CRM

BI360 Suite and Dynamics CRM BI360 Suite and Dynamics CRM A Solver White Paper Published: November 28, 2017 INTRODUCTION... 3 ADVANTAGES OF BI360 REPORTING FOR MS CRM... 3 BI360 INTEGRATION TO MS CRM... 4 FREQUENTLY ASKED QUESTIONS

More information

Shipwire Platform Analytics

Shipwire Platform Analytics Shipwire Platform Analytics Get insights into your supply chain through intelligent analytics and reporting SHIPWIRE PLATFORM ANALYTICS 1 Contents 3 Introduction 4 Activity History 5 Inventory 6 Dashboard

More information

SAP Visual Intelligence Executive Summary

SAP Visual Intelligence Executive Summary SAP Visual Intelligence Executive Summary Safe Harbor Statement The information in this presentation is confidential and proprietary to SAP and may not be disclosed without the permission of SAP. This

More information

Optimize your Service Cloud Data Best Practices, Data Extraction and NextGen Reporting

Optimize your Service Cloud Data Best Practices, Data Extraction and NextGen Reporting Optimize your Service Cloud Data Best Practices, Data Extraction and NextGen Reporting Kris Nichols - Sr. OSvC Solution Consultant Mehrzad Kootar - BI Solution Consultant Oracle Service Cloud Date: August

More information

The Basics of Business Intelligence. PMI IT LIG August 19, 2008

The Basics of Business Intelligence. PMI IT LIG August 19, 2008 The Basics of Business Intelligence PMI IT LIG August 19, 2008 Presenter Anthony Boles Managing Director Intelligent Ventures Inc. 1113 Murfreesboro Rd. Suite 106-103 Franklin, TN 37064 615-599-8666 Brief

More information

20466: Implementing Data Models and Reports with Microsoft SQL Server 2014

20466: Implementing Data Models and Reports with Microsoft SQL Server 2014 20466: Implementing Data Models and Reports with Microsoft SQL Server 2014 Course Outline Module 1: Introduction to Business Intelligence and Data Modeling As a SQL Server database professional, you may

More information

Trusted Analytics An Analytical Framework That Aligns Your Organization For Better Decision Making

Trusted Analytics An Analytical Framework That Aligns Your Organization For Better Decision Making Trusted Analytics An Analytical Framework That Aligns Your Organization For Better Decision Making 1 Contents ZAP Enterprise Analytics... 3 Sales... 4 Benefits for Sales Teams.... 5 Metric Highlights....

More information

Oracle Real-Time Decisions zur Entscheidungsoptimierung und dessen Einführung

Oracle Real-Time Decisions zur Entscheidungsoptimierung und dessen Einführung Oracle Real-Time Decisions zur Entscheidungsoptimierung und dessen Einführung César Ortiz, Competence Center BI cesar.ortiz@oracle.com Tel. +49.511.95787161 Oracle Deutschland B.V.

More information

3 STEPS TO MAKE YOUR SHARED SERVICE ORGANIZATION A DIGITAL POWERHOUSE

3 STEPS TO MAKE YOUR SHARED SERVICE ORGANIZATION A DIGITAL POWERHOUSE GUIDE 3 STEPS TO MAKE YOUR SHARED SERVICE ORGANIZATION A DIGITAL POWERHOUSE www.celonis.com IN THIS GUIDE Shared-service organizations (SSOs) are about to get a digital upgrade. For decades, SSOs have

More information

Reporting for Advancement

Reporting for Advancement Strategies for Supporting Advancement and Development Reporting for Advancement The Changing Economics of Business Intelligence The changing economics of business intelligence make this technology feasible

More information

Business Intelligence and Process Modelling

Business Intelligence and Process Modelling Business Intelligence and Process Modelling F.W. Takes Universiteit Leiden Lecture 3: Business Intelligence & Visual Analytics BIPM Lecture 3: Business Intelligence & Visual Analytics 1 / 72 Business Intelligence

More information

ABSTRACT INTRODUCTION OUR ETL EVOLUTION

ABSTRACT INTRODUCTION OUR ETL EVOLUTION Paper 2409-2018 Developing BI Best Practices: Texas Parks and Wildlife s ETL Evolution Drew Turner, John Taylor, Alejandro Farias, Texas Parks and Wildlife Department ABSTRACT The development of extract,

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

IBM COGNOS BI OVERVIEW

IBM COGNOS BI OVERVIEW IBM COGNOS BI OVERVIEW Cognos is a suite of products to create Business Analytics, Business Intelligence and... Full product portfolio http://www-01.ibm.com/software/data/cognos/... IBM Cognos BI Overview

More information

NETSUITE FOR RETAIL Designed to Satisfy Your Omnichannel Shoppers

NETSUITE FOR RETAIL Designed to Satisfy Your Omnichannel Shoppers NETSUITE FOR RETAIL Designed to Satisfy Your Omnichannel Shoppers Why Run Your Retail Business on NetSuite? Today s consumers are more demanding than ever. They want to shop whenever and however they please

More information

<Insert Picture Here> Charles Phillips

<Insert Picture Here> Charles Phillips 1 Charles Phillips President The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any

More information

Requirements Analysis and Design Definition. Chapter Study Group Learning Materials

Requirements Analysis and Design Definition. Chapter Study Group Learning Materials Requirements Analysis and Design Definition Chapter Study Group Learning Materials 2015, International Institute of Business Analysis (IIBA ). Permission is granted to IIBA Chapters to use and modify this

More information

IBM s Analytics Transformation

IBM s Analytics Transformation IBM s Analytics Transformation Value Capture from Big Data, Analytics and Cognitive Technologies Martin Fleming VP, Chief Analytics Officer, and Chief Economist Chief Analytics Office Analytics Aligned

More information

Epicor for Distribution

Epicor for Distribution Epicor for Distribution As a distributor, you know that employing a powerful technology strategy is a key to success and to staying ahead of the competition, which seems to get more sophisticated every

More information

WHITE PAPER. Getting to Why in Omnichannel Title Marketing Attribution

WHITE PAPER. Getting to Why in Omnichannel Title Marketing Attribution WHITE PAPER Getting to Why in Omnichannel Title Marketing Attribution ii Contents The state of affairs... 1 The limitations of summarized, siloed channel data...2 Key takeaways... 3 Learn more... 3 1 The

More information

Converting Big Data into Business Value with Analytics Colin White

Converting Big Data into Business Value with Analytics Colin White Converting Big Data into Business Value with Analytics Colin White BI Research June 26, 2013 Sponsor Speakers Colin White President, BI Research Mike Watschke Sr. Director, Global Center for Analytics,

More information

Oracle Retail Data Model (ORDM) Overview

Oracle Retail Data Model (ORDM) Overview Oracle Retail Data Model (ORDM) Overview May, 2014 Content Retail Business Intelligence Key Trends Retail Industry Findings Foundation for Business Information Flows Retail is being Redefined Challengers

More information

REPORTING FUNDAMENTALS FOR PROGRAMMERS

REPORTING FUNDAMENTALS FOR PROGRAMMERS RSM TECHNOLOGY ACADEMY Syllabus and Agenda REPORTING FUNDAMENTALS FOR PROGRAMMERS FOR MICROSOFT DYNAMICS AX Course Details 3 Audience 3 Course Cancellation Policy 3 Guaranteed to Run 4 Travel Guide 4 Hosted

More information

Developing Metrics to Drive Results

Developing Metrics to Drive Results Developing Metrics to Drive Results June 18 th, 2013 Agenda I. Introductions and Objectives II. Challenges of implementing a metrics strategy III. How do we define an effective metrics strategy a) Identifying

More information

Enterprise Transformation Methodology Strategic Roadmap Development

Enterprise Transformation Methodology Strategic Roadmap Development Enterprise Transformation Methodology Strategic Roadmap Development White Paper Contents Think Big, Start Small, Deliver Quickly... 3 Transformation Roadmap... 3 Fundamental Business Drivers... 4 Enterprise

More information

When the Disco ends you don t need to stop moving Review of the best alternatives to Oracle Discoverer Tim Dickinson

When the Disco ends you don t need to stop moving Review of the best alternatives to Oracle Discoverer Tim Dickinson When the Disco ends you don t need to stop moving Review of the best alternatives to Oracle Discoverer Oracle EBS Reporting post Discoverer Thinking about using a non-oracle product to provide Oracle E-Business

More information

1. Search, for finding individual or sets of documents and files

1. Search, for finding individual or sets of documents and files WHITE PAPER TURNING UNSTRUCTURED TEXT INTO INSIGHT Extending Business Intelligence With Text Analysis and Search EXECUTIVE SUMMARY While traditional business intelligence (BI) has transformed business

More information

DYNAMIC FULFILLMENT (DF) The Answer To Omni-channel Retailing s Fulfillment Challenges. Who s This For?

DYNAMIC FULFILLMENT (DF) The Answer To Omni-channel Retailing s Fulfillment Challenges. Who s This For? DYNAMIC FULFILLMENT (DF) The Answer To Omni-channel Retailing s Fulfillment Challenges Who s This For? This publication will be of greatest value to retailers in need of a highly efficient and flexible

More information

Integrated Social and Enterprise Data = Enhanced Analytics

Integrated Social and Enterprise Data = Enhanced Analytics ORACLE WHITE PAPER, DECEMBER 2013 THE VALUE OF SOCIAL DATA Integrated Social and Enterprise Data = Enhanced Analytics #SocData CONTENTS Executive Summary 3 The Value of Enterprise-Specific Social Data

More information

Situational Intelligence: The Key to Agile Decision Making

Situational Intelligence: The Key to Agile Decision Making A BPM Partners White Paper Situational Intelligence: The Key to Agile Decision Making Sponsored by: February 2010 2010 BPM Partners, Inc. All material contained in this document remains the property of

More information

Harnessing the Power of IBM Business Analytics Through Application Specific Licensing

Harnessing the Power of IBM Business Analytics Through Application Specific Licensing Harnessing the Power of IBM Business Analytics Through Application Specific Licensing David Albert WW ASL Business Development and Technical Manager Business Analytics Business Analytics software Agenda

More information

Stuck with Power BI? Get Pyramid Starting at $0/month. Start Moving with the Analytics OS

Stuck with Power BI? Get Pyramid Starting at $0/month. Start Moving with the Analytics OS Stuck with Power BI? Start Moving with the Analytics OS Get Pyramid 2018 Starting at $0/month Start Moving with Pyramid 2018 Break Away from Power BI Many organizations struggle to meet their analytic

More information

SAMPLE. Prompt and consistent attendance in your online courses is essential for your success at CSU-Global Campus. please contact your advisor.

SAMPLE. Prompt and consistent attendance in your online courses is essential for your success at CSU-Global Campus. please contact your advisor. ISM540: Introduction to Business Intelligence Credit Hours: 3 Contact Hours: This is a 3-credit course, offered in accelerated format. This means that 16 weeks of material is covered in 8 weeks. The exact

More information

Migrating to OBI EE? A Simplified Strategy for Oracle E- Business Suite & Discoverer Users

Migrating to OBI EE? A Simplified Strategy for Oracle E- Business Suite & Discoverer Users Migrating to OBI EE? A Simplified Strategy for Oracle E- Business Suite & Discoverer Users Daryl Orts, VP Engineering Technologies Daryl.Orts@noetix.com Agenda Introduction Overview of Oracle BI Suite

More information

Sage ERP MAS. Everything you want to know about Sage ERP MAS Intelligence. What is Sage ERP MAS Intelligence? benefits

Sage ERP MAS. Everything you want to know about Sage ERP MAS Intelligence. What is Sage ERP MAS Intelligence? benefits Sage ERP MAS Everything you want to know about Sage ERP MAS Intelligence What is Sage ERP MAS Intelligence? Sage ERP MAS Intelligence (or Intelligence) empowers managers to quickly and easily obtain operations

More information

Verint Engagement Management Solution Brief. Overview of the Applications and Benefits of

Verint Engagement Management Solution Brief. Overview of the Applications and Benefits of Verint Engagement Management Solution Brief Overview of the Applications and Benefits of Verint Engagement Management November 2015 Table of Contents Introduction... 2 Verint Engagement Management Advantages...

More information

TABLE OF CONTENTS DOCUMENT HISTORY

TABLE OF CONTENTS DOCUMENT HISTORY TABLE OF CONTENTS DOCUMENT HISTORY 5 UPDATE 17D 5 Revision History 5 Overview 5 Optional Uptake of New Features (Opt In) 6 Update Tasks 6 Feature Summary 7 Demand Management 9 Forecast Unique Demand Segments

More information

Meeting the Challenges of Business Intelligence

Meeting the Challenges of Business Intelligence SAP Thought Leadership Paper Business Intelligence Meeting the Challenges of Business Intelligence For Small Enterprises Table of Contents 4 Why Small Enterprises Need Business Intelligence 5 Overview

More information

SAP Predictive Analysis

SAP Predictive Analysis SAP Predictive Analysis How Predictive Analysis Works. Scott Leaver, Global Solution Manager SAP Internal Use Only Today s Agenda Predictive Analytics Strategic Investment Area for SAP Introduction to

More information

Copyright Infor. All Rights Reserved.

Copyright Infor. All Rights Reserved. 1 Infor In-Person: Infor LN Roadshow 2 Thank you to our sponsors 3 Infor In-Person: Infor LN Roadshow John Robson ACA, Business Consultant, Infor EMEA 4 Infor Enterprise Performance Management ( EPM )

More information

Rajat Walia. IBM Cognos Business Intelligence and Performance Management

Rajat Walia. IBM Cognos Business Intelligence and Performance Management Rajat Walia IBM Cognos Business Intelligence and Performance Management Welcome to IBM Webathon 2010 Session Objectives At the end of this session, you will be able to understand: Performance Management

More information

Avoiding Business Analytic Failures & Road Map for Implementation

Avoiding Business Analytic Failures & Road Map for Implementation JPK Group Business Forecasting & Analytics Forum June 6-7, 2017 Boston, MA Avoiding Business Analytic Failures & Road Map for Implementation Assess the viability of the practical use of business analytics

More information

Profitics Retail Analytics

Profitics Retail Analytics Profitics Retail Analytics Profitics Retail Analytics Suite A powerful retail-focused tool kit to optimize merchandise decision-making and streamline workflows Optimize pricing, promotions and markdowns

More information

A Kuno Creative ebook. CREATING CONTENT for MARKETING AUTOMATION

A Kuno Creative ebook. CREATING CONTENT for MARKETING AUTOMATION A Kuno Creative ebook CREATING CONTENT for MARKETING AUTOMATION Why Content Matters Content is an essential part of any online marketing strategy. Blogs, ebooks and video can be used for anything from

More information

TABLE OF CONTENTS DOCUMENT HISTORY

TABLE OF CONTENTS DOCUMENT HISTORY TABLE OF CONTENTS DOCUMENT HISTORY 4 UPDATE 17D 4 Revision History 4 Overview 4 Optional Uptake of New Features (Opt In) 5 Update Tasks 5 Feature Summary 6 Supply Chain Collaboration 7 Streamline Collaboration

More information

CALCULATING THE ROI OF LEAD NURTURING

CALCULATING THE ROI OF LEAD NURTURING Definitive Guide to Lead Nurturing Lead Calculating the ROI of Lead Nurturing In Part One of the Definitive Guide to Lead Nurturing, we learned the value of lead nurturing done well, and in Parts Two and

More information

Five Ways Marketing Can Drive Higher Online Commerce Revenue. Building Long-Term Relationships and Brand Advocates in the Process

Five Ways Marketing Can Drive Higher Online Commerce Revenue. Building Long-Term Relationships and Brand Advocates in the Process Five Ways Marketing Can Drive Higher Online Commerce Revenue Building Long-Term Relationships and Brand Advocates in the Process 5 1 Turning Transactions Into Revenue, Relationships, and Advocates Now

More information

Analytical Approaches in Insurance How to assure profitable business. Andrea Berková Business Development Manager - Oracle Financial Services ECEMEA

Analytical Approaches in Insurance How to assure profitable business. Andrea Berková Business Development Manager - Oracle Financial Services ECEMEA Analytical Approaches in Insurance How to assure profitable business Andrea Berková Business Development Manager - Oracle Financial Services ECEMEA Insurance Market Dynamics Adapting to Market Dynamics

More information

IIBA Global Business Analysis Core Standard. A Companion to A Guide to the Business Analysis Body of Knowledge (BABOK Guide) Version 3

IIBA Global Business Analysis Core Standard. A Companion to A Guide to the Business Analysis Body of Knowledge (BABOK Guide) Version 3 IIBA Global Business Analysis Core Standard A Companion to A Guide to the Business Analysis Body of Knowledge (BABOK Guide) Version 3 International Institute of Business Analysis, Toronto, Ontario, Canada.

More information

Digital Dashboard RFP Questions & Answers

Digital Dashboard RFP Questions & Answers Digital Dashboard RFP Questions & Answers Summary 13 companies submitted an Intent to Bid. 10 companies submitted questions. 109 questions were submitted. Questions & Answers 1. Are there any incumbent

More information

Expert Reference Series of White Papers. Web Intelligence to the Rescue

Expert Reference Series of White Papers. Web Intelligence to the Rescue Expert Reference Series of White Papers Web Intelligence to the Rescue 1-800-COURSES www.globalknowledge.com Web Intelligence to the Rescue Jim Brogden, BOCP-BOE, BOCP-MS, BOCP-CR Introduction The life

More information

Intelligence, a powerful

Intelligence, a powerful Lotus and Cognos Business Intelligence, a powerful combination Combining the power of business intelligence and Lotus Juha Teljo Business Analytics Solution Executive IBM 1 Agenda Objective: Learn about

More information

SAP Simple Finance The Future of Finance. Angélica Bedoya, Center of Excellence, SAP LAC Abril, 2015

SAP Simple Finance The Future of Finance. Angélica Bedoya, Center of Excellence, SAP LAC Abril, 2015 SAP Simple Finance The Future of Finance Angélica Bedoya, Center of Excellence, SAP LAC Abril, 2015 Today s Volatile World Needs Strong CFOs How profitable is our new global business unit? The balance

More information

DWH/BI Enabling Technologies Management of alternative BI and DWH Dimensions Getting Business into the driver seat

DWH/BI Enabling Technologies Management of alternative BI and DWH Dimensions Getting Business into the driver seat DWH/BI Enabling Technologies Management of alternative BI and DWH Dimensions Getting Business into the driver seat Ulrich Scheuber Sales Development MDM and OPA Safe Harbor Statement The following is intended

More information

Data Governance and Data Quality. Stewardship

Data Governance and Data Quality. Stewardship Data Governance and Data Quality Stewardship 1 Agenda Discuss Data Quality and Data Governance Considerations for future technical decisions 2 Intelligence Portal Embedded InfoApps Hot Social Bad Feedback

More information

Constructing Your Data Warehouse

Constructing Your Data Warehouse Constructing Your Data Warehouse Experience, Expertise, BIAS Sr. Vice President for Finance & Information Systems VGH & UBC Hospital Foundation Principal and Founder SupportingAdvancement.Com SupportingFundraising.Com

More information

Supply Chain Key Performance Indicators

Supply Chain Key Performance Indicators www.halobi.com Supply Chain Key Performance Indicators www.halobi.com Go beyond canned KPIs and pre-built analytics and understand your business the way that makes the most sense to you. There are over

More information

USE CASES APAMA. Luis Ramos, Ph.D. Principal Solutions Architect. 3:15pm to 4:00pm May 3, 2016

USE CASES APAMA. Luis Ramos, Ph.D. Principal Solutions Architect. 3:15pm to 4:00pm May 3, 2016 APAMA USE CASES Luis Ramos, Ph.D. Principal Solutions Architect 3:15pm to 4:00pm May 3, 2016 2016 Software AG. All rights reserved. For internal use only STREAMING ANALYTICS WHAT IS IT? Software that can

More information

Sales Management in Microsoft Dynamics CRM 2013

Sales Management in Microsoft Dynamics CRM 2013 Course 80546A: Sales Management in Microsoft Dynamics CRM 2013 Course Details Course Outline Module 1: Introduction to Sales Management The Sales module within Microsoft Dynamics CRM provides a flexible

More information

Top 10 Best Practices. for Migrating Data from. On-Premise to the Cloud

Top 10 Best Practices. for Migrating Data from. On-Premise to the Cloud 3 1 2 4 5 6 7 8 Top 10 Best Practices 9 for Migrating Data from 10 On-Premise to the Cloud Introduction Cloud computing has become an all-but completely compelling choice for most businesses. The clear

More information

The New Marketing Metrics for B2B. Measurements that really matter to the success of your business

The New Marketing Metrics for B2B. Measurements that really matter to the success of your business The New Marketing Metrics for B2B Measurements that really matter to the success of your business Table of Contents Introduction Step 1: Analyze Your Customer s Buying Process Step 2: Identify Your Marketing

More information

Introduction and Key Concepts Study Group Session 1

Introduction and Key Concepts Study Group Session 1 Introduction and Key Concepts Study Group Session 1 PDU: CH71563-04-2017 (3 hours) 2015, International Institute of Business Analysis (IIBA ). Permission is granted to IIBA Chapters to use and modify this

More information

80318: Reporting in Microsoft Dynamics AX 2012

80318: Reporting in Microsoft Dynamics AX 2012 Let s Reach For Excellence! TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC Address: 103 Pasteur, Dist.1, HCMC Tel: 08 38245819; 38239761 Email: traincert@tdt-tanduc.com Website: www.tdt-tanduc.com; www.tanducits.com

More information

Oracle Business Intelligence & Spatial Views

Oracle Business Intelligence & Spatial Views Oracle Business Intelligence & Spatial Views Abhinav Agarwal Principal Product Manager Mar 13 2008 Jayant Sharma Technical Director THE FOLLOWING IS INTENDED TO OUTLINE OUR GENERAL

More information

The challenges focusing on ROI (Return on Information) Dave Donkin. Group Executive: E-Business, Innovation and Information Management

The challenges focusing on ROI (Return on Information) Dave Donkin. Group Executive: E-Business, Innovation and Information Management The challenges focusing on ROI (Return on Information) Dave Donkin Group Executive: E-Business, Innovation and Information Overview challenges focusing on ROI! Information orientation! Understanding the

More information

7 TIPS TO SUPER-CHARGE CORNERSTONE

7 TIPS TO SUPER-CHARGE CORNERSTONE 7 TIPS TO SUPER-CHARGE CORNERSTONE You have great talent. You have a great platform. How can you go even further? GOALS DEVELOPMENT PLANNING TRAINING CREATIVITY VISION LEARNING www.tribridge.com/hcm hcm@tribridge.com

More information

+38% Your Path to Personalization: A Framework for Digital Marketing Advancement

+38% Your Path to Personalization: A Framework for Digital Marketing Advancement Your Path to Personalization: A Framework for Digital Marketing Advancement White Paper +38% According to our survey, 38% more companies plan to increase investments in personalization in the next 12-18

More information

Enterprise Mass Media Co.

Enterprise Mass Media Co. The Path to Better Marketing Planning and Measurement Annual revenue: >$10B Size of marketing team: 300 Title of key stakeholders: CMO, VP of Marketing & Demand, Director of Marketing Analytics, Marketing

More information

PHP in the enterprise How Zend helps modernize application development to bring projects to market faster

PHP in the enterprise How Zend helps modernize application development to bring projects to market faster PHP in the enterprise How Zend helps modernize application development to bring projects to market faster November 8, 2012 1.0 Introduction 1.1 PHP Overview SECTION 1: INTRODUCTION 1.0 Introduction From

More information

People. Data. Ease of Use and Massive BI Adoption. Jake Freivald Vice President Information Builders March 9, Experience Shows.

People. Data. Ease of Use and Massive BI Adoption. Jake Freivald Vice President Information Builders March 9, Experience Shows. Ease of Use and Massive BI Adoption Jake Freivald Vice President Information Builders March 9, 2009 Experience Shows Everyone needs timely information, but most companies only share 20% of their data with

More information

MOVE YOUR DIGITAL EXPERIENCE FORWARD

MOVE YOUR DIGITAL EXPERIENCE FORWARD MOVE YOUR DIGITAL EXPERIENCE FORWARD An Adobe Experience Manager Perspective perficientdigital.com We re living in the Age of the Customer, where balance of brand power has shifted from businesses to the

More information

Making BI Easier An Introduction to Vectorwise

Making BI Easier An Introduction to Vectorwise Taking Action on Big Data Making BI Easier An Introduction to Vectorwise Richard.Stock@actian.com Actian Overview Taking Action on Big Data Ingres Vectorwise Action Apps. Cloud Action Platform World class

More information

SAP Industry Accelerators a Deeper look

SAP Industry Accelerators a Deeper look SAP Industry Accelerators a Deeper look Jayne Landry, Global VP Product Management, SAP Leonardo Analytics PUBLIC Agenda What Are SAP Leonardo Industry Accelerators? Solution Portfolio and Road Map Demo:

More information

Measuring Your ROI On Social Media

Measuring Your ROI On Social Media Measuring Your ROI On Social Media So What? * Measuring what matters means measuring relationships * All transactions conducted today are still driven by relationships * Building, managing, and measuring

More information

Big Data Solution for Church & Dwight. Get the most out of your complex business data with Big Data and business intelligence

Big Data Solution for Church & Dwight. Get the most out of your complex business data with Big Data and business intelligence for Church & Dwight Get the most out of your complex business data with Big Data and business intelligence for Church & Dwight INDEX Sr. No. Subject Slide No. 1 About Church & Dwight 03 2 The Challenge

More information

ORACLE RESPONSYS PROFESSIONAL SERVICES DESCRIPTIONS

ORACLE RESPONSYS PROFESSIONAL SERVICES DESCRIPTIONS ORACLE RESPONSYS PROFESSIONAL SERVICES DESCRIPTIONS (January 25, 2018) RESPONSYS CONSULTING SERVICES PACKAGES... 3 Responsys Basic SmartStart Implementation Service Remote... 3 Responsys Premium SmartStart

More information

Microsoft BI Product Suite

Microsoft BI Product Suite Microsoft BI Product Suite On Premises and In the Cloud What is Business Intelligence? How is the BI industry evolving? What are the typical components of a BI solution? How can BI be deployed within your

More information

Do you remember the future? 2014 MapR Technologies 2

Do you remember the future? 2014 MapR Technologies 2 2014 MapR Technologies 2014 MapR Technologies 1 Do you remember the future? 2014 MapR Technologies 2 2014 MapR Technologies 3 Some things turned out as expected 2014 MapR Technologies 4 Guys wearing Fedoras

More information