The World of BI is Changing

Size: px
Start display at page:

Download "The World of BI is Changing"

Transcription

1 Module 5: Best Practices for Scaling With Enterprise Needs Copyright R20/Consultancy B.V., The Hague, The Netherlands. All rights reserved. No part of this material may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, photographic, or otherwise, without the explicit written permission of the copyright owners. for by Rick F. van der Lans R20/Consultancy BV The World of BI is Changing New data sources New user groups New forms of reporting and analytics Operational BI More agility required Time-to-market TCO has to go down Copyright R20/Consultancy B.V., The Hague, The Netherlands 2 1

2 Network of Databases (Labyrinth) personal data stores databases data marts data staging area operational data store data warehouse Copyright R20/Consultancy B.V., The Hague, The Netherlands 3 Data Virtualization application reporting & analytics SOA SQL statement SQL statement Data Virtualization SQL statement Server Copyright R20/Consultancy B.V., The Hague, The Netherlands 4 2

3 Summary of Modules 1-4 application reporting & analytics Data Virtualization Server SOA Data virtualization leads to simplification of BI systems which increases agility and productivity, and improves maintenance Data modeling becomes more collaborative and iterative On-demand data profiling leads to more collaborative development What self-service BI tools do for the reporting layer (increase agility), that s what data virtualization tools do for the data storage layer Copyright R20/Consultancy B.V., The Hague, The Netherlands 5 Enterprise Needs Advanced caching mechanism High query performance Wide range of query optimization techniques Extensive data security features Alternative data integration forms Seamless switching between data integration techniques Copyright R20/Consultancy B.V., The Hague, The Netherlands 6 3

4 Speeding Up a Data Virtualization Server Data virtualization server Analytical in-memory database server databases data staging area other data sources data store data warehouse Copyright R20/Consultancy B.V., The Hague, The Netherlands 7 Caches Mimimize Access to Data Stores Virtual table without cache Virtual table with cache Copyright R20/Consultancy B.V., The Hague, The Netherlands 8 4

5 When to Use Caching? Query performance Load optimization Consistent reporting Source availability Complex transformations Security Copyright R20/Consultancy B.V., The Hague, The Netherlands 9 Caches on Multiple Levels V 2 V 3 V 1 Copyright R20/Consultancy B.V., The Hague, The Netherlands 10 5

6 Different Forms of Caching Full refreshing, incremental refreshing, live refreshing Online and Offline refreshing Time-based caching, eventbased caching, and query-based caching Cache replication Copyright R20/Consultancy B.V., The Hague, The Netherlands 11 Refresher of Query Optimization (1) Processing Strategy 1 SELECT * FROM CUSTOMER WHERE CUSTOMER_ID = 45 RESULT := []; FOR EACH C IN CUSTOMER DO IF C.CUSTOMER_ID = 45 THEN RESULT :+ C; ENDFOR; Processing Strategy 2 RESULT := []; FOR EACH C IN CUSTOMER WHERE CUSTOMER_ID = 45 DO RESULT :+ C; ENDFOR; Copyright R20/Consultancy B.V., The Hague, The Netherlands 12 6

7 Six Stages of Query Optimization Application Query acquisition 1 6 Result Transmission 2 Query optimization by DBS 3 Data access Database Server Database 5 Database processing 4 Data retrieval Copyright R20/Consultancy B.V., The Hague, The Netherlands 13 Refresher of Query Optimization (1) Processing Strategy 1 SELECT * FROM CUSTOMER WHERE CUSTOMER_ID = 45 RESULT := []; FOR EACH C IN CUSTOMER DO IF C.CUSTOMER_ID = 45 THEN RESULT :+ C; ENDFOR; Processing Strategy 2 RESULT := []; FOR EACH C IN CUSTOMER WHERE CUSTOMER_ID = 45 DO RESULT :+ C; ENDFOR; Copyright R20/Consultancy B.V., The Hague, The Netherlands 14 7

8 Refresher of Query Optimization (2) Processing strategy 1 SELECT CUSTOMER_ID, CITY_NAME FROM CUSTOMER WHERE CUSTOMER_ID < 10 AND CITY_NAME = 'Tulsa' ORDER BY CUSTOMER_ID RESULT := []; FOR EACH C IN CUSTOMER DO IF (C.CUSTOMER_ID < 10) AND (C.CITY_NAME = 'Tulsa') THEN RESULT :+ C; ENDFOR; RESULT := []; Processing strategy 2 FOR EACH C IN CUSTOMER WHERE CUSTOMER_ID < 10 DO IF C.CITY_NAME = 'Tulsa' THEN RESULT :+ C; ENDFOR; RESULT := []; FOR EACH C IN CUSTOMER WHERE CITY_NAME = 'Tulsa' DO IF C.CUSTOMER_ID < 10 THEN RESULT :+ C; ENDFOR; Copyright R20/Consultancy B.V., The Hague, The Netherlands 15 Ten Stages of DV Query Optimization Application Query acquisition 1 10 Result transmission Query optimization by DVS Query shipment Query optimization by DBS Data access Data Virtualization Server Database Server Database Data transformation and federation Data Transmission Database processing Data retrieval Copyright R20/Consultancy B.V., The Hague, The Netherlands 16 8

9 Query Substitution SELECT * FROM V1 V 1 V1 mapping: SELECT C1, COUNT(*) FROM V2 GROUP BY C1 V 2 V2 mapping: SELECT C1, C2, C3 FROM T1 WHERE C2 > 1000 T 1 Executed query: SELECT C1, COUNT(*) FROM T1 WHERE C2 > 1000 GROUP BY C1 Copyright R20/Consultancy B.V., The Hague, The Netherlands 17 Query Pushdown (1) Query: SELECT C2, CONCAT(C5, C6) FROM T1 WHERE C1 = > 1000 AND C4 BETWEEN 10 AND 20 V 1 V1 Mapping: SELECT * FROM V1 T 1 Pushed down query: SELECT C2, C5, C6 FROM T1 WHERE C1 = > 1000 AND C4 BETWEEN 10 AND 20 Copyright R20/Consultancy B.V., The Hague, The Netherlands 18 9

10 Big table Small table Query Pushdown (2) Query: SELECT T1.C1, T2.C1, T3.C4 FROM T1, T2, T3 WHERE T1.C1 = T2.C2 AND T2.C1 = T3.C3 AND T2.C1 > 1000 AND T3.C4 BETWEEN 10 AND 20 Query to database 1: SELECT T1.C1, T2.C1 FROM T1, T2 WHERE T1.C1 = T2.C2 AND T2.C1 > 1000 V 1 V 2 V 3 V 3 Query to database 2: SELECT T3.C3, T3.C4 FROM T3 WHERE T3.C3 > 1000 AND T3.C4 BETWEEN 10 AND 20 T 1 T 2 T 3 Copyright R20/Consultancy B.V., The Hague, The Netherlands 19 Query Expansion (Injection) Query: SELECT FROM WHERE T1.C1, T1.C2 T1, T2 T1.C1 = T2.C2 Expanded query: SELECT T1.C1, T1.C2 FROM T1 WHERE T1.C1 IN (1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20) Copyright R20/Consultancy B.V., The Hague, The Netherlands 20 10

11 Different Types of Data Integration ETL/ELT Data replication On-demand data integration On-demand data integration with cache Copyright R20/Consultancy B.V., The Hague, The Netherlands 21 Seamless Switching Between Data Integration Forms Data Virtalization Repository With Integration Specifications ETL/ELT Data replication On-demand data integration On-demand data integration with cache Copyright R20/Consultancy B.V., The Hague, The Netherlands 22 11

12 Data Virtualization & Data Replication application operational reporting replication database replicated database Copyright R20/Consultancy B.V., The Hague, The Netherlands 23 Data Virtualization & Data Replication operational reporting application data virtualization server replication database replicated database Copyright R20/Consultancy B.V., The Hague, The Netherlands 24 12

13 Data Protection Copyright R20/Consultancy B.V., The Hague, The Netherlands 25 Row-based Data Protection Copyright R20/Consultancy B.V., The Hague, The Netherlands 26 13

14 Summary Advanced data virtualization means high performance, advanced data security, and support for multiple data integration styles Analysis & Design Development Runtime & Management Data federation Data virtualization Advanced data virtualization Copyright R20/Consultancy B.V., The Hague, The Netherlands 27 Five Modules Module 1: How to Architect for Agility and Productivity in Your Projects Module 2: Best Practices for Developing a Reusable and Flexible Data Model Module 3: Best Practices for Real-Time Data Profiling and Data Quality Module 4: Best Practices for Ensuring Managed Self-Service BI Module 5: Best Practices for Scaling with Enterprise Needs Copyright R20/Consultancy B.V., The Hague, The Netherlands 28 14

15 Rick F. van der Lans Rick F. van der Lans is an independent consultant, lecturer, and author. He specializes in data warehousing, business intelligence, service oriented architectures, and database technology. He is managing director of R20/Consultancy B.V.. Rick has been involved in various projects in which SOA, data warehousing, and integration technology was applied. Rick van der Lans is an internationally acclaimed lecturer. He has lectured professionally for the last twenty years in many of the European and Middle East countries, the USA, South America, and in Australia. He has been invited by several major software vendors to present keynote speeches. He is the author of several books on computing, including his new Data Virtualization for Business Intelligence Systems. Some of these books are available in different languages. Books such as the popular Introduction to SQL is available in English, Dutch, Italian, Chinese, and German and is sold world wide. He also authored The SQL Guide to Ingres and SQL for MySQL Developers. As author for BeyeNetwork.com, writer of whitepapers, as chairman for the annual European Data Warehouse and Business Intelligence Conference, and as columnist for a few IT magazines, he has close contacts with many vendors. R20/Consultancy B.V. is located in The Hague, The Netherlands, You can get in touch with Rick via: rick@r20.nl LinkedIn: Copyright R20/Consultancy B.V., The Hague, The Netherlands 29 15

Agile Data Integration for Business Intelligence Lecture Series

Agile Data Integration for Business Intelligence Lecture Series Agile Data Integration for Business Intelligence Lecture Series Copyright 1991-2012 R20/Consultancy B.V., The Hague, The Netherlands. All rights reserved. No part of this material may be reproduced, stored

More information

The Enterprise Data Marketplace

The Enterprise Data Marketplace The Enterprise Data Marketplace Rick F. van der Lans Industry analyst Email rick@r20.nl Twitter @rick_vanderlans www.r20.nl Copyright 2018 R20/Consultancy B.V., The Netherlands. All rights reserved. No

More information

Data Virtualization in the Time of Big Data

Data Virtualization in the Time of Big Data Data Virtualization in the Time of Big Data A Technical Whitepaper Rick F. van der Lans Independent Business Intelligence Analyst R20/Consultancy September 2017 Sponsored by Copyright 2017 Cisco and/or

More information

Intro to BI Architecture Warren Sifre

Intro to BI Architecture Warren Sifre Intro to BI Architecture Warren Sifre introduction Warren Sifre Principal Consultant Email: wa_sifre@hotmail.com Website: www.linkedin.com/in/wsifre Twitter: @WAS_SQL Professional History 20 years in the

More information

From Single Purpose to Multi Purpose Data Lakes. Thomas Niewel Technical Sales Director DACH Denodo Technologies March, 2019

From Single Purpose to Multi Purpose Data Lakes. Thomas Niewel Technical Sales Director DACH Denodo Technologies March, 2019 From Single Purpose to Multi Purpose Data Lakes Thomas Niewel Technical Sales Director DACH Denodo Technologies March, 2019 Agenda Data Lakes Multiple Purpose Data Lakes Customer Example Demo Takeaways

More information

SQL For MySQL Developers: A Comprehensive Tutorial And Reference Ebooks Free

SQL For MySQL Developers: A Comprehensive Tutorial And Reference Ebooks Free SQL For MySQL Developers: A Comprehensive Tutorial And Reference Ebooks Free The Most Complete and Practical Guide to MySQL Version 5â s Powerful SQL Dialect  MySQL version 5 offers a SQL dialect with

More information

Composite Software Data Virtualization The Five Most Popular Uses of Data Virtualization

Composite Software Data Virtualization The Five Most Popular Uses of Data Virtualization Composite Software Data Virtualization The Five Most Popular Uses of Data Virtualization Composite Software, Inc. June 2011 TABLE OF CONTENTS INTRODUCTION... 3 DATA FEDERATION... 4 PROBLEM DATA CONSOLIDATION

More information

The SQL Guide to Pervasive PSQL. Rick F. van der Lans

The SQL Guide to Pervasive PSQL. Rick F. van der Lans The SQL Guide to Pervasive PSQL Rick F. van der Lans Copyright 2009 by R20/Consultancy All rights reserved; no part of this publication may be reproduced, stored in a retrieval system, or transmitted in

More information

Optimizing and Modeling SAP Business Analytics for SAP HANA. Iver van de Zand, Business Analytics

Optimizing and Modeling SAP Business Analytics for SAP HANA. Iver van de Zand, Business Analytics Optimizing and Modeling SAP Business Analytics for SAP HANA Iver van de Zand, Business Analytics Early data warehouse projects LIMITATIONS ISSUES RAISED Data driven by acquisition, not architecture Too

More information

Drawing the Big Picture

Drawing the Big Picture Drawing the Big Picture Multi-Platform Data Architectures, Queries, and Analytics Philip Russom TDWI Research Director for Data Management August 26, 2015 Sponsor 2 Speakers Philip Russom TDWI Research

More information

Implementing a Data Warehouse with Microsoft SQL Server 2014 (20463D)

Implementing a Data Warehouse with Microsoft SQL Server 2014 (20463D) Implementing a Data Warehouse with Microsoft SQL Server 2014 (20463D) Overview This course describes how to implement a data warehouse platform to support a BI solution. Students will learn how to create

More information

Microsoft Implementing a Data Warehouse with Microsoft SQL Server 2014

Microsoft Implementing a Data Warehouse with Microsoft SQL Server 2014 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20463 - Implementing a Data Warehouse with Microsoft SQL Server 2014 Length 5 days Price $4290.00 (inc GST) Version D Overview Please note: Microsoft have

More information

HA100 SAP HANA Introduction

HA100 SAP HANA Introduction HA100 SAP HANA Introduction. COURSE OUTLINE Course Version: 13 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

IBM dashdb Local. Using a software-defined environment in a private cloud to enable hybrid data warehousing. Evolving the data warehouse

IBM dashdb Local. Using a software-defined environment in a private cloud to enable hybrid data warehousing. Evolving the data warehouse IBM dashdb Local Using a software-defined environment in a private cloud to enable hybrid data warehousing Evolving the data warehouse Managing a large-scale, on-premises data warehouse environments to

More information

TECHED USER CONFERENCE MAY 3-4, 2016

TECHED USER CONFERENCE MAY 3-4, 2016 TECHED USER CONFERENCE MAY 3-4, 2016 Bob Jeffcott Software AG Big Data Adabas In Memory Data Management with Terracotta 2016 Software AG. All rights reserved. For internal use only AGENDA 1. ADABAS/NATURAL

More information

BW362. SAP BW Powered by SAP HANA COURSE OUTLINE. Course Version: 11 Course Duration: 5 Day(s)

BW362. SAP BW Powered by SAP HANA COURSE OUTLINE. Course Version: 11 Course Duration: 5 Day(s) BW362 SAP BW Powered by SAP HANA. COURSE OUTLINE Course Version: 11 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

BusinessObjects Metadata Management XI 3.0 for Windows

BusinessObjects Metadata Management XI 3.0 for Windows BusinessObjects Metadata Management XI 3.0 for Windows Supported Platforms Overview Contents This document lists specific platforms and configurations for BusinessObjects Metadata Management XI 3.0 for

More information

Tableau Server - 101

Tableau Server - 101 Tableau Server - 101 Prepared By: Ojoswi Basu Certified Tableau Consultant LinkedIn: https://ca.linkedin.com/in/ojoswibasu Introduction Tableau Software was founded on the idea that data analysis and subsequent

More information

Third generation of Data Virtualization

Third generation of Data Virtualization White Paper Third generation of Data Virtualization Write back to the sources An Enterprise Enabler white paper from Stone Bond Technologies Copyright 2014 Stone Bond Technologies, L.P. All rights reserved.

More information

Extending the Reach of LSA++ Using New SAP BW 7.40 Artifacts Pravin Gupta, TekLink International Inc. Bhanu Gupta, Molex SESSION CODE: BI2241

Extending the Reach of LSA++ Using New SAP BW 7.40 Artifacts Pravin Gupta, TekLink International Inc. Bhanu Gupta, Molex SESSION CODE: BI2241 Extending the Reach of LSA++ Using New SAP BW 7.40 Artifacts Pravin Gupta, TekLink International Inc. Bhanu Gupta, Molex SESSION CODE: BI2241 Agenda What is Enterprise Data Warehousing (EDW)? Introduction

More information

Fast Innovation requires Fast IT

Fast Innovation requires Fast IT Fast Innovation requires Fast IT Cisco Data Virtualization Puneet Kumar Bhugra Business Solutions Manager 1 Challenge In Data, Big Data & Analytics Siloed, Multiple Sources Business Outcomes Business Opportunity:

More information

Implementing a Data Warehouse with Microsoft SQL Server 2014

Implementing a Data Warehouse with Microsoft SQL Server 2014 Course 20463D: Implementing a Data Warehouse with Microsoft SQL Server 2014 Page 1 of 5 Implementing a Data Warehouse with Microsoft SQL Server 2014 Course 20463D: 4 days; Instructor-Led Introduction This

More information

RED HAT LEARNING SUBSCRIPTION

RED HAT LEARNING SUBSCRIPTION RED HAT LEARNING SUBSCRIPTION FREQUENTLY ASKED QUESTIONS INTRODUCTION In today s IT environment, it is vital for our teams to stay up-to-date with the top skills in the industry, especially as new technologies

More information

IBM DB2 Analytics Accelerator use cases

IBM DB2 Analytics Accelerator use cases IBM DB2 Analytics Accelerator use cases Ciro Puglisi Netezza Europe +41 79 770 5713 cpug@ch.ibm.com 1 Traditional systems landscape Applications OLTP Staging Area ODS EDW Data Marts ETL ETL ETL ETL Historical

More information

SAP HANA Leading Marketplace for IT and Certification Courses

SAP HANA Leading Marketplace for IT and Certification Courses SAP HANA Overview SAP HANA or High Performance Analytic Appliance is an In-Memory computing combines with a revolutionary platform to perform real time analytics and deploying and developing real time

More information

Beginning Transact-SQL with SQL Server 2000 and Paul Turley with Dan Wood

Beginning Transact-SQL with SQL Server 2000 and Paul Turley with Dan Wood Beginning Transact-SQL with SQL Server 2000 and 2005 Paul Turley with Dan Wood Beginning Transact-SQL with SQL Server 2000 and 2005 Beginning Transact-SQL with SQL Server 2000 and 2005 Paul Turley with

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

Implement a Data Warehouse with Microsoft SQL Server

Implement a Data Warehouse with Microsoft SQL Server Implement a Data Warehouse with Microsoft SQL Server 20463D; 5 days, Instructor-led Course Description This course describes how to implement a data warehouse platform to support a BI solution. Students

More information

Guide Users along Information Pathways and Surf through the Data

Guide Users along Information Pathways and Surf through the Data Guide Users along Information Pathways and Surf through the Data Stephen Overton, Overton Technologies, LLC, Raleigh, NC ABSTRACT Business information can be consumed many ways using the SAS Enterprise

More information

CHAPTER 3 Implementation of Data warehouse in Data Mining

CHAPTER 3 Implementation of Data warehouse in Data Mining CHAPTER 3 Implementation of Data warehouse in Data Mining 3.1 Introduction to Data Warehousing A data warehouse is storage of convenient, consistent, complete and consolidated data, which is collected

More information

20463C-Implementing a Data Warehouse with Microsoft SQL Server. Course Content. Course ID#: W 35 Hrs. Course Description: Audience Profile

20463C-Implementing a Data Warehouse with Microsoft SQL Server. Course Content. Course ID#: W 35 Hrs. Course Description: Audience Profile Course Content Course Description: This course describes how to implement a data warehouse platform to support a BI solution. Students will learn how to create a data warehouse 2014, implement ETL with

More information

Pervasive PSQL Summit v10 Highlights Performance and analytics

Pervasive PSQL Summit v10 Highlights Performance and analytics Pervasive PSQL Summit v10 Highlights Performance and analytics A Monash Information Services Bulletin by Curt A. Monash, PhD. September, 2007 Sponsored by: Pervasive PSQL Version 10 Highlights Page 2 PSQL

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

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

Using Data Virtualization to Accelerate Time-to-Value From Your Data. Integrating Distributed Data in Real Time

Using Data Virtualization to Accelerate Time-to-Value From Your Data. Integrating Distributed Data in Real Time Using Data Virtualization to Accelerate Time-to-Value From Your Data Integrating Distributed Data in Real Time Speaker Paul Moxon VP Data Architectures and Chief Evangelist @ Denodo Technologies Data,

More information

Call: SAS BI Course Content:35-40hours

Call: SAS BI Course Content:35-40hours SAS BI Course Content:35-40hours Course Outline SAS Data Integration Studio 4.2 Introduction * to SAS DIS Studio Features of SAS DIS Studio Tasks performed by SAS DIS Studio Navigation to SAS DIS Studio

More information

Implementing a Data Warehouse with Microsoft SQL Server

Implementing a Data Warehouse with Microsoft SQL Server Course 20463C: Implementing a Data Warehouse with Microsoft SQL Server Page 1 of 6 Implementing a Data Warehouse with Microsoft SQL Server Course 20463C: 4 days; Instructor-Led Introduction This course

More information

Databases and ERP Selection: Oracle vs SQL Server

Databases and ERP Selection: Oracle vs SQL Server DATABASES AND ERP ORACLE VS SQL SELECTION: SERVER Databases and ERP Selection: Oracle vs SQL Server By Rick Veague, Chief Technology Officer, IFS North America An enterprise application like enterprise

More information

Kent Graziano

Kent Graziano Agile Data Warehouse Modeling: Introduction to Data Vault Modeling Kent Graziano Twitter @KentGraziano Agenda Bio What is a Data Vault? Where does it fit in an DW/BI architecture? How to design a Data

More information

DATA WAREHOUSE PART LX: PROJECT MANAGEMENT ANDREAS BUCKENHOFER, DAIMLER TSS

DATA WAREHOUSE PART LX: PROJECT MANAGEMENT ANDREAS BUCKENHOFER, DAIMLER TSS A company of Daimler AG LECTURE @DHBW: DATA WAREHOUSE PART LX: PROJECT MANAGEMENT ANDREAS BUCKENHOFER, DAIMLER TSS ABOUT ME Andreas Buckenhofer Senior DB Professional andreas.buckenhofer@daimler.com Since

More information

Java in the world of Software AG JCP EC May 2018

Java in the world of Software AG JCP EC May 2018 Java in the world of Software AG JCP EC May 2018 Georgi Stanev Architect Software AG 2017 Software AG. All rights reserved. History of the Software AG 1969 The concept for an adaptable and extremely versatile

More information

Microsoft Analytics Platform System (APS)

Microsoft Analytics Platform System (APS) Microsoft Analytics Platform System (APS) The turnkey modern data warehouse appliance Matt Usher, Senior Program Manager @ Microsoft About.me @two_under Senior Program Manager 9 years at Microsoft Visual

More information

Business Intelligence and Decision Support Systems

Business Intelligence and Decision Support Systems Business Intelligence and Decision Support Systems (9 th Ed., Prentice Hall) Chapter 8: Data Warehousing Learning Objectives Understand the basic definitions and concepts of data warehouses Learn different

More information

Data Architectures in Azure for Analytics & Big Data

Data Architectures in Azure for Analytics & Big Data Data Architectures in for Analytics & Big Data October 20, 2018 Melissa Coates Solution Architect, BlueGranite Microsoft Data Platform MVP Blog: www.sqlchick.com Twitter: @sqlchick Data Architecture A

More information

WebSphere Information Integrator

WebSphere Information Integrator WebSphere Information Integrator Enterprise Information is in Isolated Silos CUSTOMER SERVICE MARKETING FINANCE SALES & SUPPORT CUSTOMERS & PARTNERS LEGAL HR R&D Independent Sources and Systems Information

More information

Reliability and Performance with IBM DB2 Analytics Accelerator Version 4.1 IBM Redbooks Solution Guide

Reliability and Performance with IBM DB2 Analytics Accelerator Version 4.1 IBM Redbooks Solution Guide Reliability and Performance with IBM DB2 Analytics Accelerator Version 4.1 IBM Redbooks Solution Guide The IBM DB2 Analytics Accelerator for IBM z/os (simply called DB2 Accelerator or just Accelerator

More information

SQL Server Everything built-in

SQL Server Everything built-in 2016 Everything built-in 2016: Everything built-in built-in built-in built-in built-in built-in $2,230 80 70 60 50 43 69 49 40 30 20 10 0 34 6 0 1 29 4 22 20 15 5 0 0 2010 2011 2012 2013 2014 2015 18 3

More information

Perceptive Enterprise Deployment Suite

Perceptive Enterprise Deployment Suite Perceptive Enterprise Deployment Suite Release Notes Version: 1.2.x Written by: Product Documentation, R&D Date: October 2014 2014 Perceptive Software. All rights reserved. Perceptive Software is a trademark

More information

WHITE PAPER. The Many Different Types of DBAs. Craig Mullins

WHITE PAPER. The Many Different Types of DBAs. Craig Mullins BI/Analytics Applications Databases WHITE PAPER The Many Different Types of DBAs AUTHOR: Craig Mullins ABSTRACT: Although DBAs, at a high level, are tasked with managing and assuring the efficiency of

More information

BI ENVIRONMENT PLANNING GUIDE

BI ENVIRONMENT PLANNING GUIDE BI ENVIRONMENT PLANNING GUIDE Business Intelligence can involve a number of technologies and foster many opportunities for improving your business. This document serves as a guideline for planning strategies

More information

MAC OS L E S O F P A G E R U T H E WINDOWS N G I N I D E F L A Y O U. The choice for publishing software worldwide.

MAC OS L E S O F P A G E R U T H E WINDOWS N G I N I D E F L A Y O U. The choice for publishing software worldwide. MAC OS WINDOWS D E F I N I N G T H E R U L E S O F P A G E L A Y O U T p The choice for publishing software worldwide. For over Quark, Inc. has defined the ultimate in electronic publishing software. With

More information

Microsoft certified solutions associate

Microsoft certified solutions associate Microsoft certified solutions associate MCSA: BI Reporting This certification demonstrates your expertise in analyzing data with both Power BI and Excel. Exam 70-778/Course 20778 Analyzing and Visualizing

More information

CA ERwin Data Modeler r9 Rick Alaras N.A. Channel Account Manager

CA ERwin Data Modeler r9 Rick Alaras N.A. Channel Account Manager ERwin r9 CA ERwin Data Modeler r9 Rick Alaras N.A. Channel Account Manager In today s data-driven economy, there is an increasing disconnect between consumers and providers of data DATA VOLUMES INCREASING

More information

Oracle BI 11g R1: Build Repositories Course OR102; 5 Days, Instructor-led

Oracle BI 11g R1: Build Repositories Course OR102; 5 Days, Instructor-led Oracle BI 11g R1: Build Repositories Course OR102; 5 Days, Instructor-led Course Description This Oracle BI 11g R1: Build Repositories training is based on OBI EE release 11.1.1.7. Expert Oracle Instructors

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

Full file at

Full file at Chapter 2 Data Warehousing True-False Questions 1. A real-time, enterprise-level data warehouse combined with a strategy for its use in decision support can leverage data to provide massive financial benefits

More information

Making Sense of Schema-on-Read

Making Sense of Schema-on-Read YOUR DATA, NO LIMITS Making Sense of Schema-on-Read KENT GRAZIANO Chief Technical Evangelist Snowflake Computing @KentGraziano 1 My Bio Chief Technical Evangelist, Snowflake Computing Oracle ACE Director

More information

The Zero-Delay Data Warehouse: Mobilizing Heterogeneous Databases

The Zero-Delay Data Warehouse: Mobilizing Heterogeneous Databases The Zero-Delay Data Warehouse: Mobilizing Heterogeneous Databases Eva Kühn TECCO AG Austria info@tecco.at Abstract Now is the time for the real-time enterprise : In spite of this assertion from Gartner

More information

Modernizing Business Intelligence and Analytics

Modernizing Business Intelligence and Analytics Modernizing Business Intelligence and Analytics Justin Erickson Senior Director, Product Management 1 Agenda What benefits can I achieve from modernizing my analytic DB? When and how do I migrate from

More information

Fundamentals of Information Systems, Seventh Edition

Fundamentals of Information Systems, Seventh Edition Chapter 3 Data Centers, and Business Intelligence 1 Why Learn About Database Systems, Data Centers, and Business Intelligence? Database: A database is an organized collection of data. Databases also help

More information

Key Differentiators. What sets Ideal Anaytics apart from traditional BI tools

Key Differentiators. What sets Ideal Anaytics apart from traditional BI tools Key Differentiators What sets Ideal Anaytics apart from traditional BI tools Ideal-Analytics is a suite of software tools to glean information and therefore knowledge, from raw data. Self-service, real-time,

More information

Progress DataDirect For Business Intelligence And Analytics Vendors

Progress DataDirect For Business Intelligence And Analytics Vendors Progress DataDirect For Business Intelligence And Analytics Vendors DATA SHEET FEATURES: Direction connection to a variety of SaaS and on-premises data sources via Progress DataDirect Hybrid Data Pipeline

More information

An Information Asset Hub. How to Effectively Share Your Data

An Information Asset Hub. How to Effectively Share Your Data An Information Asset Hub How to Effectively Share Your Data Hello! I am Jack Kennedy Data Architect @ CNO Enterprise Data Management Team Jack.Kennedy@CNOinc.com 1 4 Data Functions Your Data Warehouse

More information

Mastering Data Warehouse Aggregates Solutions For Star Schema Performance

Mastering Data Warehouse Aggregates Solutions For Star Schema Performance Mastering Data Warehouse Aggregates Solutions For Star Schema Performance Star Schema The Complete Reference Christopher Adamson Amazon. Mastering Data Warehouse Aggregates, Solutions for Star Schema Performance

More information

Capture Business Opportunities from Systems of Record and Systems of Innovation

Capture Business Opportunities from Systems of Record and Systems of Innovation Capture Business Opportunities from Systems of Record and Systems of Innovation Amit Satoor, SAP March Hartz, SAP PUBLIC Big Data transformation powers digital innovation system Relevant nuggets of information

More information

Introduction to Federation Server

Introduction to Federation Server Introduction to Federation Server Alex Lee IBM Information Integration Solutions Manager of Technical Presales Asia Pacific 2006 IBM Corporation WebSphere Federation Server Federation overview Tooling

More information

2015 IT Priorities Survey. DACH Report

2015 IT Priorities Survey. DACH Report 2015 IT Priorities Survey DACH Report Job focus Which best describes the areas to which you devote most of your time? Server management Data center/infrastructure operations Networking Program or project

More information

Customer Use Case: Efficiently Maximizing Retail Value Across Distributed Data Warehouse Systems

Customer Use Case: Efficiently Maximizing Retail Value Across Distributed Data Warehouse Systems Customer Use Case: Efficiently Maximizing Retail Value Across Distributed Data Warehouse Systems Klaus-Peter Sauer Technical Lead SAP CoE EMEA at Teradata Agenda 1 2 3 4 5 HEMA Company Background Teradata

More information

Designing a Data Virtualization Environment A Step-By-Step Approach

Designing a Data Virtualization Environment A Step-By-Step Approach Designing a Data Virtualization Environment A Step-By-Step Approach A Technical Whitepaper Rick F. van der Lans Independent Business Intelligence Analyst R20/Consultancy January 2016 Sponsored by Copyright

More information

Business Analytics in the Oracle 12.2 Database: Analytic Views. Event: BIWA 2017 Presenter: Dan Vlamis and Cathye Pendley Date: January 31, 2017

Business Analytics in the Oracle 12.2 Database: Analytic Views. Event: BIWA 2017 Presenter: Dan Vlamis and Cathye Pendley Date: January 31, 2017 Business Analytics in the Oracle 12.2 Database: Analytic Views Event: BIWA 2017 Presenter: Dan Vlamis and Cathye Pendley Date: January 31, 2017 Vlamis Software Solutions Vlamis Software founded in 1992

More information

Building a Data Strategy for a Digital World

Building a Data Strategy for a Digital World Building a Data Strategy for a Digital World Jason Hunter, CTO, APAC Data Challenge: Pushing the Limits of What's Possible The Art of the Possible Multiple Government Agencies Data Hub 100 s of Service

More information

Perceptive Intelligent Capture Visibility

Perceptive Intelligent Capture Visibility Perceptive Intelligent Capture Visibility Technical Specifications Version: 3.1.x Written by: Product Knowledge, R&D Date: August 2018 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark

More information

Textual Integration -- Some Business Examples

Textual Integration -- Some Business Examples Textual Integration -- Some Business Examples ABSTRACT For years organizations have been making decisions based on transaction processing data. There is nothing wrong with this. But there is another form

More information

Audience BI professionals BI developers

Audience BI professionals BI developers Applied Microsoft BI The Microsoft Data Platform empowers BI pros to implement organizational BI solutions delivering a single version of the truth across the enterprise. A typical organizational solution

More information

Welcome! Power BI User Group (PUG) Copenhagen

Welcome! Power BI User Group (PUG) Copenhagen Welcome! Power BI User Group (PUG) Copenhagen Connect to Data in Power BI Desktop Just Thorning Blindbæk Consultant, Trainer and Speaker Connect to Data in Power BI Desktop Basic introduction to data connectivity

More information

Microsoft SQL Server Training Course Catalogue. Learning Solutions

Microsoft SQL Server Training Course Catalogue. Learning Solutions Training Course Catalogue Learning Solutions Querying SQL Server 2000 with Transact-SQL Course No: MS2071 Two days Instructor-led-Classroom 2000 The goal of this course is to provide students with the

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

What is database? Types and Examples

What is database? Types and Examples What is database? Types and Examples Visit our site for more information: www.examplanning.com Facebook Page: https://www.facebook.com/examplanning10/ Twitter: https://twitter.com/examplanning10 TABLE

More information

NetIQ Secure Configuration Manager Installation Guide. October 2016

NetIQ Secure Configuration Manager Installation Guide. October 2016 NetIQ Secure Configuration Manager Installation Guide October 2016 Legal Notice For information about NetIQ legal notices, disclaimers, warranties, export and other use restrictions, U.S. Government restricted

More information

Kofax Capture. Technical Specifications. Version: Date:

Kofax Capture. Technical Specifications. Version: Date: Kofax Capture Technical Specifications Version: 11.0.0 Date: 2017-10-31 2017 Kofax. All rights reserved. Kofax is a trademark of Kofax, Inc., registered in the U.S. and/or other countries. All other trademarks

More information

DQpowersuite. Superior Architecture. A Complete Data Integration Package

DQpowersuite. Superior Architecture. A Complete Data Integration Package DQpowersuite Superior Architecture Since its first release in 1995, DQpowersuite has made it easy to access and join distributed enterprise data. DQpowersuite provides an easy-toimplement architecture

More information

After completing this course, participants will be able to:

After completing this course, participants will be able to: Designing a Business Intelligence Solution by Using Microsoft SQL Server 2008 T h i s f i v e - d a y i n s t r u c t o r - l e d c o u r s e p r o v i d e s i n - d e p t h k n o w l e d g e o n d e s

More information

Provide Real-Time Data To Financial Applications

Provide Real-Time Data To Financial Applications Provide Real-Time Data To Financial Applications DATA SHEET Introduction Companies typically build numerous internal applications and complex APIs for enterprise data access. These APIs are often engineered

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : 1Z0-630 Title : Siebel7.7 Analytics Server Architect Professional Core Exam

More information

Data 101 Which DB, When. Joe Yong Azure SQL Data Warehouse, Program Management Microsoft Corp.

Data 101 Which DB, When. Joe Yong Azure SQL Data Warehouse, Program Management Microsoft Corp. Data 101 Which DB, When Joe Yong (joeyong@microsoft.com) Azure SQL Data Warehouse, Program Management Microsoft Corp. The world is changing AI increased by 300% in 2017 Data will grow to 44 ZB in 2020

More information

Management Information Systems MANAGING THE DIGITAL FIRM, 12 TH EDITION FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT

Management Information Systems MANAGING THE DIGITAL FIRM, 12 TH EDITION FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT MANAGING THE DIGITAL FIRM, 12 TH EDITION Chapter 6 FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT VIDEO CASES Case 1: Maruti Suzuki Business Intelligence and Enterprise Databases

More information

Introduction to Data Science

Introduction to Data Science UNIT I INTRODUCTION TO DATA SCIENCE Syllabus Introduction of Data Science Basic Data Analytics using R R Graphical User Interfaces Data Import and Export Attribute and Data Types Descriptive Statistics

More information

metamatrix enterprise data services platform

metamatrix enterprise data services platform metamatrix enterprise data services platform Bridge the Gap with Data Services Leaders of high-priority application projects in businesses and government agencies are looking to complete projects efficiently,

More information

Data Warehouse and Data Mining

Data Warehouse and Data Mining Data Warehouse and Data Mining Lecture No. 03 Architecture of DW Naeem Ahmed Email: naeemmahoto@gmail.com Department of Software Engineering Mehran Univeristy of Engineering and Technology Jamshoro Basic

More information

DATA VAULT CDVDM. Certified Data Vault Data Modeler Course. Sydney Australia December In cooperation with GENESEE ACADEMY, LLC

DATA VAULT CDVDM. Certified Data Vault Data Modeler Course. Sydney Australia December In cooperation with GENESEE ACADEMY, LLC DATA VAULT CDVDM Certified Data Vault Data Modeler Course Sydney Australia December 3-5 2012 In cooperation with GENESEE ACADEMY, LLC Course Description and Outline DATA VAULT CDVDM Certified Data Vault

More information

Answer: A Reference:http://www.vertica.com/wpcontent/uploads/2012/05/MicroStrategy_Vertica_12.p df(page 1, first para)

Answer: A Reference:http://www.vertica.com/wpcontent/uploads/2012/05/MicroStrategy_Vertica_12.p df(page 1, first para) 1 HP - HP2-N44 Selling HP Vertical Big Data Solutions QUESTION: 1 When is Vertica a better choice than SAP HANA? A. The customer wants a closed ecosystem for BI and analytics, and is unconcerned with support

More information

HA100 SAP HANA Introduction

HA100 SAP HANA Introduction HA100 SAP HANA Introduction. COURSE OUTLINE Course Version: 15 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may

More information

Best Practices in the Asia Pacific ICT Industry

Best Practices in the Asia Pacific ICT Industry Best Practices in the Asia Pacific ICT Industry 2009 Asia Pacific Frost & Sullivan ICT Award for Collaboration & Conferencing Services Provider of the Year COLLABORATION & CONFERENCING SERVICES MARKETS

More information

COURSE LISTING. Courses Listed. Training for Database & Technology with Modeling in SAP HANA. Einsteiger. Fortgeschrittene.

COURSE LISTING. Courses Listed. Training for Database & Technology with Modeling in SAP HANA. Einsteiger. Fortgeschrittene. Training for Database & Technology with Modeling in SAP HANA Courses Listed Einsteiger HA100 - SAP HANA Introduction Fortgeschrittene HA300 - SAP HANA 2.0 SPS02 Modeling Zertifizierung C_HANAIMP_13 - SAP

More information

Your New Autonomous Data Warehouse

Your New Autonomous Data Warehouse AUTONOMOUS DATA WAREHOUSE CLOUD Your New Autonomous Data Warehouse What is Autonomous Data Warehouse Autonomous Data Warehouse is a fully managed database tuned and optimized for data warehouse workloads

More information

E-BOOK # SQL 2012 BUSINESS INTELLIGENCE EDITION EBOOK

E-BOOK # SQL 2012 BUSINESS INTELLIGENCE EDITION EBOOK 30 November, 2017 E-BOOK # SQL 2012 BUSINESS INTELLIGENCE EDITION EBOOK Document Filetype: PDF 125.98 KB 0 E-BOOK # SQL 2012 BUSINESS INTELLIGENCE EDITION EBOOK Delivering Business Intelligence with Microsoft

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

Kofax Transformation Modules. Technical Specifications. Version: 6.2.0

Kofax Transformation Modules. Technical Specifications. Version: 6.2.0 Kofax Transformation Modules Technical s Version: 6.2.0 Written by: Product Management KTM Date: May 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., or its

More information

PERSPECTIVE. Data Virtualization A Potential Antidote for Big Data Growing Pains. Abstract

PERSPECTIVE. Data Virtualization A Potential Antidote for Big Data Growing Pains. Abstract PERSPECTIVE Data Virtualization A Potential Antidote for Big Data Growing Pains Abstract Enterprises are already facing challenges around data consolidation, heterogeneity, quality, and value. Now they

More information

CPRE Question Bank. 200 questions with answers and explanations. LN Mishra, CPRE, CBAP, CSM, PMP

CPRE Question Bank. 200 questions with answers and explanations. LN Mishra, CPRE, CBAP, CSM, PMP CPRE Question Bank 200 questions with answers and explanations LN Mishra, CPRE, CBAP, CSM, PMP Copyright notice All rights reserved. CPRE is registered Trademarks of International Requirements Engineering

More information