QLIKVIEW DATA FLOWS TECHNICAL BRIEF

Size: px
Start display at page:

Download "QLIKVIEW DATA FLOWS TECHNICAL BRIEF"

Transcription

1 QLIKVIEW DATA FLOWS TECHNICAL BRIEF A QlikView Technical Brief September 2013 qlikview.com

2 Table of Contents Introduction 3 Overview 3 Data Sourcing 5 Loading and Modeling Data 6 Provisioning Data 9 Using The Data for Analytics 10 Data Governance and Security 12 Learn More 13 QlikView Data Flows Technical Brief 2

3 Introduction Business Discovery relies on the connection, transformation, distribution and ultimately, analysis of data. This paper provides an introductory overview of the data flows through a typical QlikView deployment and describes the role of individual systems. We explain how data is sourced from multiple, heterogeneous sources, how it is manipulated to make it consistent and logical, and how it is distributed where users can interact with the QlikView applications. Overview There are four main systems involved in building a QlikView enterprise system: QlikView Desktop, QlikView Publisher, QlikView Server, and Clients. To understand the data flow, we need to understand the role of these systems and where they are situated in the system architecture (see Figure 1). SAN Storage SMTP service Figure 1 - QlikView Architectural Overview QlikView Data Flows Technical Brief 3

4 QlikView Desktop: This is the main tool for creating QlikView applications. The application designer uses this tool to specify where data is sourced, how it is manipulated, and how it is displayed. The application presentation is handled by Clients, but application data processing is managed by the Server. Clients: This is where users use the QlikView application to view and interact with data. The application can be part of a standalone executable or part of a web page. The client side of applications is designed to consume few computational resources. QlikView Server: This system serves applications and data to clients, performs application calculations, and manages security. QlikView Publisher: This system provides a means of controlling how the data used by applications is updated. The sections of this paper will follow how data is sourced, loaded and modeled, provisioned, and then analyzed in QlikView. Additionally, discussion of how data is governed and secured is included. Data Sourcing Loading & Modeling Data Provisioning Data Data for Analytics Governance and Security QlikView Data Flows Technical Brief 4

5 Data Sourcing QlikView extracts data from multiple, heterogeneous sources (e.g. databases, spreadsheets, web pages and Big Data sources such as Hadoop and Google BigQuery) and creates a homogenous data set suitable for analysis and visualization. QlikView In-Memory Data Loading & Modeling Direct Query (Direct Discovery) SFDC QVX SAP ODBC OLEDB Web pages Spread sheets SFDC Other SAP Big Data Data Warehouse Standard Databases Heterogeneous data sources, locations and formats Figure 2: Loading data from multiple sources into QlikView Data is sourced from a multitude of systems, from standard ODBC, OLE DB and JDBC data stores (such as Oracle), spreadsheets and web pages (HTML, XML, etc.) to systems that require custom connectors (such as Salesforce.com, SAP and Google BigQuery). For most data sources, a connection is made using a wizard that simplifies the connection process and allows the application designer control over how data is read. For example, the designer can choose not to read in certain fields or to rename them. The presence of a data warehouse is not required, although if it already exists, it is easily leveraged by QlikView. Accessing Hadoop-based Big Data systems is straightforward too. Where an ODBC or JDBC driver does not exist, QlikView has an open standard data exchange protocol (called QVX) that can be used to build custom connectors to data sources that do not offer standard connectivity. QlikView Data Flows Technical Brief 5

6 Loading and Modeling Data QlikView s primary method of conducting data analysis is to use its in-memory engine. Since its inception in 1993, QlikView has used an in-memory approach to data analytics and for over 20 years, has built on this technology to offer the best in-memory analytics solution in the industry. In addition, QlikView introduced a direct query capability, Direct Discovery, to allow a measure of direct data access to the underlying data systems. Data is loaded by QlikView from the various source systems into the in-memory engine via the Load Script. The Load Script is contained within a QlikView application and uses a SQL-like language to connect to source systems and perform data modeling. The data gets loaded when the Load Script gets executed. Using QlikView Publisher, data loading can occur on a periodic basis and/or based on triggers. Figure 3: Example QlikView Load Script QlikView Data Flows Technical Brief 6

7 Once data is loaded into a QlikView application, it s held in-memory. What this means is that QlikView applications require one-time data source access to read in a dataset and store that historical data. For new data ( delta or updated data), QlikView can simply load this new data and append it to the historical data without having to do a full reload. In addition, QlikView utilizes sophisticated algorithms to compress the data (sometimes up to 90% from the size on disk in a database) to make optimal use of the in-memory store. For more information, please see blog post: qlikviewdesignblog/2012/11/20/symbol-tables-and-bit-stuffed-pointers Application developers also use the Load Script to model data from the various source systems prior to inserting it into the in-memory engine. In reality, business intelligence tools must cope with data that is incomplete, poorly labeled, or duplicated across multiple sources. Linking data from different data sources requires the use of a key, but the same data can be labeled in different way across different sources (e.g. Sales, Sales Revenue, and Sales Numbers might all be the same data see Figure 4). QlikView can easily merge these similar data fields from different tables into a single, consolidated view (e.g. converting the 3 Sales fields into a single field called Sales $ see Figure 4). Figure 4: Renaming of fields from different sources QlikView Data Flows Technical Brief 7

8 A more subtle problem is slightly different data formats for the same underlying data, for example one data source might store dates in a single YYYY-MM-DD field while another might have separate Year, Month, and Date fields. The application designer must be able to consolidate all date fields into a single, representative view. The Load Script allows fields to be renamed, separated, joined, or otherwise manipulated. For example, the developer can do table joins, or create a Name field by combining First Name and Last Name fields. Because QlikView directly reads in data sources, it s possible to manipulate fields across multiple data sources, for example the user could conditionally read in sales person data (HR database) where the sales person has made a sale (Sales database). Figure 5: QlikView Data Model Viewer QlikView provides a data model viewer (see Figure 5) that makes it easy to see the associations that have been made within the engine as well as providing information about the data such as density, field names, table names, and so on. It can also find data model problems to fix them with the scripting environment. The QlikView engine provides a unique associative capability to the data that has been loaded. This means that data that is sourced from multiple systems can be treated as a single data entity within the engine for the purpose of analytics, regardless of where the data came from. QlikView applies associations between the data from the various systems by automatically mapping fields that have the same name and same data type. This allows users to interrogate and make discoveries in their data as if it were a single table of data, rather than data coming from a variety of disparate and unconnected systems. In Figure 5, one can see the automatic associations are made between the Facts table and the Employees table, for example, via the EmployeeID field. QlikView Data Flows Technical Brief 8

9 Provisioning Data QlikView offers a set of file-based data persistence options. In fact, every QlikView application (a.qvw file) itself contains all the data needed for the application. This data within the.qvw file on disk, which is binary encoded, represents the data that was loaded during the previous execution of the Load Script. The Load Script is also contained within the.qvw file, as is the entire presentation layer. Larger deployments typically use a data staging layer. This is to a) provide atomic data packages that are optimized for a particular analytic need (e.g. a Finance package that contains data from various Finance and Ops systems), and b) provide an optimized data loading environment for QlikView. QlikView developers can create a.qvd file which is an optimized QlikView data file that can be loaded rapidly into a.qvw application. Typical deployments of QlikView include a QVD Layer containing a number of.qvd files (e.g. a Finance QVD, Sales QVD, Q1 QVD and so on) that application developers can use off the shelf to build their own specific QlikView applications and promote the reuse of consistent data across many QlikView apps. See Figure 6. Figure 6: Example QVD Layer QlikView Data Flows Technical Brief 9

10 Using The Data for Analytics Once the data is loaded into the in-memory associative engine, a large variety of very powerful, and real time, analytics capabilities are available. This is because of the rapid and highlyflexible nature of QlikView s in-memory technology. Developers can create sophisticated analytics applications that give business users a very rich set of analysis capabilities and allow business users to conduct their own analysis and interrogate their data the way they wish. Using the Expression Language that is accessed via most visualization objects in QlikView, the in-memory data can be dynamically aggregated, manipulated, and compared on-the-fly. New dimensions can be calculated on-the-fly that were not previously in existence in the data model. New hierarchies can be defined, and different groupings (or sets) of data can be isolated for the purpose of comparative analytics. QlikView Data Flows Technical Brief 10

11 With the in-memory analytics engine, QlikView apps can be built to do the following: Calculated Dimensions Aggregations on-the-fly (e.g. statistics) Hierarchies on-the-fly Set Analysis Comparative Analysis Conditional Display There has been a lot of discussion in the marketplace about in-memory: The term in-memory really doesn t even begin to paint the full picture for someone about what analytics capabilities are available in a product. People should investigate what exactly they are getting when they acquire an inmemory solution. With QlikView, it is the ability to use in-memory technology to do on-demand calculation (i.e. nothing needs to be pre-calculated or pre-aggregated) across an entire multi-table data model, in a completely associative manner that makes QlikView truly unique in this regard. For a more in-depth understanding of how QlikView works under the covers, see the blog post at: qlikviewdesignblog/2013/07/15/logical-inference-and-aggregations The Expression environment contains hundreds of functions that developers can utilize to build dynamic and highly relevant apps. These functions are grouped (see Figure 7) and cover topics such as Aggregation, Financial, Mapping, Number Interpolation and so on. Figure 7: Categories of the hundreds of functions available in the Expression Language QlikView Data Flows Technical Brief 11

12 Data Governance and Security How can you know that the sales revenue figure used by the accounting department is the same as that used by sales and marketing? How can you be sure that numbers are calculated the same way across different applications? This problem is given more urgency and importance by regulatory and reporting laws that require traceability. Ensuring consistency and accountability is the essence of data governance. The QlikView Governance Dashboard and QlikView Expressor provide data governance and centralized, controlled data provisioning for QlikView applications respectively. The Governance Dashboard provides a comprehensive view into the data flows into QlikView, how the data is manipulated, and who is using what and when. QlikView Expressor allows for the provisioning of consistent and traceable rules for calculating business quantities such as sales revenue, employee costs, and profit. Data stewards use QlikView Expressor to provide common business rule definitions across a QlikView deployment. Security is about controlling who has access to what data. All QlikView deployments require authentication which is handled via Integrated Windows Authentication or a 3rd party Single Sign-On solution. Once the user s identity is established, there is the issue of authorization to access different data sets. Authorization can be set at the application, application section level, row level and individual data element levels. QlikView uses a number of industry standard and proprietary technologies to provide detailed control over what data users can see. In a QlikView system, all communications between the client and the server use either HTTPS or the QlikView proprietary QVP protocol and no ports are opened between the client and the server. For more information, please reference the QlikView Security Overview Technology White Paper. QlikView Data Flows Technical Brief 12

13 Learn More QlikView Architectural Overview QlikView Governance Overview QlikView Security Overview QlikView Design Blog Post: Logical Inference and Aggregations QlikView Design Blog Post: Symbol Tables and Bit Stuffed Pointers 2013 QlikTech International AB. All rights reserved. QlikTech, QlikView, Qlik, Q, Simplifying Analysis for Everyone, Power of Simplicity, New Rules, The Uncontrollable Smile and other QlikTech products and services as well as their respective logos are trademarks or registered trademarks of QlikTech International AB. All other company names, products and services used herein are trademarks or registered trademarks of their respective owners. The information published herein is subject to change without notice. This publication is for informational purposes only, without representation or warranty of any kind, and QlikTech shall not be liable for errors or omissions with respect to this publication. The only warranties for QlikTech products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting any additional warranty. QlikView Data Flows Technical Brief 13

QLIKVIEW GOVERNANCE DASHBOARD FAQ

QLIKVIEW GOVERNANCE DASHBOARD FAQ QLIKVIEW GOVERNANCE DASHBOARD FAQ What is the QlikView Governance Dashboard?.... 2 What is the value of the QlikView Governance Dashboard?.... 2 Who should use the QlikView Governance Dashboard?.... 2

More information

QLIKVIEW IN THE ENTERPRISE

QLIKVIEW IN THE ENTERPRISE QLIKVIEW IN THE ENTERPRISE IT Overview The QlikView Business Discovery platform is a natural fit within an organization s Information Architecture, allowing IT and BI groups to serve the ever-growing analytical

More information

QLIKVIEW DEPLOYMENT FOR BIG DATA ANALYTICS AT KING.COM

QLIKVIEW DEPLOYMENT FOR BIG DATA ANALYTICS AT KING.COM QLIKVIEW DEPLOYMENT FOR BIG DATA ANALYTICS AT KING.COM QlikView Technical Case Study Series Big Data June 2012 qlikview.com Introduction This QlikView technical case study focuses on the QlikView deployment

More information

THE QLIKVIEW BUSINESS DISCOVERY PLATFORM

THE QLIKVIEW BUSINESS DISCOVERY PLATFORM THE QLIKVIEW BUSINESS DISCOVERY PLATFORM With, organizations can rapidly deploy fast, flexible Business Discovery apps that provide information workers with dynamic views of the information they need to

More information

THE QLIKVIEW PRODUCT FAMILY

THE QLIKVIEW PRODUCT FAMILY THE QLIKVIEW PRODUCT FAMILY is the world s first associative, in-memory Business Discovery platform. It enables business users to assemble data from multiple sources, explore it, make discoveries, and

More information

QLIKVIEW ARCHITECTURAL OVERVIEW

QLIKVIEW ARCHITECTURAL OVERVIEW QLIKVIEW ARCHITECTURAL OVERVIEW A Technology White Paper Published: September, 2011 Originally published: October, 2010 qlikview.com Table of Contents Making Sense of the Platform 3 Most BI Software Is

More information

WHY IT ORGANIZATIONS CAN T LIVE WITHOUT QLIKVIEW

WHY IT ORGANIZATIONS CAN T LIVE WITHOUT QLIKVIEW WHY IT ORGANIZATIONS CAN T LIVE WITHOUT QLIKVIEW A QlikView White Paper November 2012 qlikview.com Table of Contents Unlocking The Value Within Your Data Warehouse 3 Champions to the Business Again: Controlled

More information

QLIKVIEW GOVERNANCE DASHBOARD 1.0

QLIKVIEW GOVERNANCE DASHBOARD 1.0 QLIKVIEW GOVERNANCE DASHBOARD 1.0 A QlikView Technical Brief April 2013 qlikview.com Table of Contents About the QlikView Governance Dashboard 3 What s New Since Beta 2? 4 Summary Sheet 4 File Details

More information

QLIKVIEW SERVER MEMORY MANAGEMENT AND CPU UTILIZATION

QLIKVIEW SERVER MEMORY MANAGEMENT AND CPU UTILIZATION QLIKVIEW SERVER MEMORY MANAGEMENT AND CPU UTILIZATION QlikView Scalability Center Technical Brief Series September 2012 qlikview.com Introduction This technical brief provides a discussion at a fundamental

More information

The QlikView Business Discovery platform

The QlikView Business Discovery platform The Business Discovery platform With, organizations can rapidly deploy fast, flexible Business Discovery apps that provide information workers with dynamic views of the information they need to make decisions.

More information

QLIKVIEW MOBILE SECURITY

QLIKVIEW MOBILE SECURITY QLIKVIEW MOBILE SECURITY QlikView Technical Brief Published: March, 2011 qlikview.com QlikView Mobile Security Mobile devices are convenient, versatile and, for many employees, they are indispensable.

More information

QLIKVIEW ARCHITECTURE AND SYSTEM RESOURCE USAGE

QLIKVIEW ARCHITECTURE AND SYSTEM RESOURCE USAGE QLIKVIEW ARCHITECTURE AND SYSTEM RESOURCE USAGE QlikView Technical Brief April 2011 www.qlikview.com Introduction This technical brief covers an overview of the QlikView product components and architecture

More information

Qlik Sense Enabling the New Enterprise

Qlik Sense Enabling the New Enterprise Technical Brief Qlik Sense Enabling the New Enterprise Generations of Business Intelligence The evolution of the BI market can be described as a series of disruptions. Each change occurred when a technology

More information

GOVERNANCE OVERVIEW. A QlikView Technology White Paper. qlikview.com. December 2011

GOVERNANCE OVERVIEW. A QlikView Technology White Paper. qlikview.com. December 2011 GOVERNANCE OVERVIEW A QlikView Technology White Paper December 2011 qlikview.com Table of Contents Overview 3 Application Governance 4 Development 4 Usage 9 Security 12 Data Governance 13 QVD layer 13

More information

QLIKVIEW SECURITY OVERVIEW

QLIKVIEW SECURITY OVERVIEW QLIKVIEW SECURITY OVERVIEW A Technology White Paper Published: February, 2011 qlikview.com Table of Contents Overview 3 Common Security Challenges 3 Architecture 4 Authentication (Who are you? How do you

More information

QLIKVIEW ON MOBILE: Beyond Reporting. A QlikView White Paper. qlikview.com. December 2012

QLIKVIEW ON MOBILE: Beyond Reporting. A QlikView White Paper. qlikview.com. December 2012 QLIKVIEW ON MOBILE: Beyond Reporting A QlikView White Paper December 2012 qlikview.com Table of Contents QlikView on Mobile Means Discovery 3 Business Discovery on the Go 3 Reporting Alone Doesn t Drive

More information

QLIKVIEW FOR LIFE SCIENCES. Partnering for Innovation and Sustainable Growth

QLIKVIEW FOR LIFE SCIENCES. Partnering for Innovation and Sustainable Growth QLIKVIEW FOR LIFE SCIENCES Partnering for Innovation and Sustainable Growth A BUSINESS MODEL BUILT FOR INSIGHT Success in today s life sciences industry requires insight into volumes of data, the sharing

More information

SAP BusinessObjects Business Intelligence 4.1 One Strategy for Enterprise BI. May 2013

SAP BusinessObjects Business Intelligence 4.1 One Strategy for Enterprise BI. May 2013 SAP BusinessObjects Business Intelligence 4.1 One Strategy for Enterprise BI May 2013 SAP s Strategic Focus on Business Intelligence Core Self-service Mobile Extreme Social Core for innovation Complete

More information

QLIKVIEW AND BIG DATA

QLIKVIEW AND BIG DATA QLIKVIEW AND BIG DATA A QlikView Technology White Paper July 2012 victa.nl [email protected] +31 74 2915208 Introduction There is an incredible amount of interest in the topic of Big Data at present: for many

More information

Qlik s Associative Model

Qlik s Associative Model White Paper Qlik s Associative Model See the Whole Story that Lives Within Your Data August, 2015 qlik.com Table of Contents Introduction 3 Qlik s associative model 3 Query-based visualization tools only

More information

QLIKVIEW AND BIG DATA: HAVE IT YOUR WAY

QLIKVIEW AND BIG DATA: HAVE IT YOUR WAY QLIKVIEW AND BIG DATA: HAVE IT YOUR WAY A QlikView White Paper November 2012 qlikview.com Table of Contents Executive Summary 3 Introduction 3 The Two Sides of Big Data Analytics 3 How Big Data Flows from

More information

SAP BusinessObjects SOLUTIONS FOR ORACLE ENVIRONMENTS

SAP BusinessObjects SOLUTIONS FOR ORACLE ENVIRONMENTS SAP BusinessObjects SOLUTIONS FOR ORACLE ENVIRONMENTS BUSINESS INTELLIGENCE FOR ORACLE APPLICATIONS AND TECHNOLOGY SAP Solution Brief SAP BusinessObjects Business Intelligence Solutions 1 SAP BUSINESSOBJECTS

More information

WHAT S NEW IN QLIKVIEW 11

WHAT S NEW IN QLIKVIEW 11 WHAT S NEW IN QLIKVIEW 11 QlikView 11 takes Business Discovery to a whole new level by enabling users to more easily share information with coworkers, supporting larger enterprise deployments through enhanced

More information

QlikView Business Discovery Platform. Algol Consulting Srl

QlikView Business Discovery Platform. Algol Consulting Srl QlikView Business Discovery Platform Algol Consulting Srl Business Discovery Applications Application vs. Platform Application Designed to help people perform an activity Platform Provides infrastructure

More information

METADATA-DRIVEN QLIKVIEW APPLICATIONS AND POWERFUL DATA INTEGRATION WITH QLIKVIEW EXPRESSOR

METADATA-DRIVEN QLIKVIEW APPLICATIONS AND POWERFUL DATA INTEGRATION WITH QLIKVIEW EXPRESSOR METADATA-DRIVEN QLIKVIEW APPLICATIONS AND POWERFUL DATA INTEGRATION WITH QLIKVIEW EXPRESSOR A QlikView Technical Brief Document March 2013 qlikview.com Introduction This technical brief highlights a subset

More information

QlikView for utilities. Reducing Utilities Costs

QlikView for utilities. Reducing Utilities Costs QlikView for utilities Reducing Utilities Costs QlikView: Reducing Costs in utilities Today s utilities market is multi-faceted, complex and unpredictable. Privatization, streamlined regulation and competition

More information

Sisense. Product Highlights. www.sisense.com

Sisense. Product Highlights. www.sisense.com Sisense Product Highlights Introduction Sisense is a business intelligence solution that simplifies analytics for complex data by offering an end-to-end platform that lets users easily prepare and analyze

More information

White Paper: Deploying QlikView

White Paper: Deploying QlikView White Paper: Deploying QlikView White Paper: Deploying QlikView From Personal Edition to Enterprise Deployment V1.0 CFG QlikTech May 2010 www.qlikview.com White Paper: Deploying QlikView Contents: Introduction

More information

Ignite Your Creative Ideas with Fast and Engaging Data Discovery

Ignite Your Creative Ideas with Fast and Engaging Data Discovery SAP Brief SAP BusinessObjects BI s SAP Crystal s SAP Lumira Objectives Ignite Your Creative Ideas with Fast and Engaging Data Discovery Tap into your data big and small Tap into your data big and small

More information

QlikView for Telecommunications. Reducing Telecommunications Costs

QlikView for Telecommunications. Reducing Telecommunications Costs QlikView for Telecommunications Reducing Telecommunications Costs QlikView: Reducing Costs in Telecommunications Collaboration, visibility and efficiency: necessities for efficient and reliable service

More information

SAP BusinessObjects BI Clients

SAP BusinessObjects BI Clients SAP BusinessObjects BI Clients April 2015 Customer Use this title slide only with an image BI Use Cases High Level View Agility Data Discovery Analyze and visualize data from multiple sources Data analysis

More information

Qlik Sense Enterprise

Qlik Sense Enterprise Data Sheet Qlik Sense Enterprise See the whole story that lives within your data Qlik Sense is a next-generation visual analytics platform that empowers everyone to see the whole story that lives within

More information

CUSTOMER Presentation of SAP Predictive Analytics

CUSTOMER Presentation of SAP Predictive Analytics SAP Predictive Analytics 2.0 2015-02-09 CUSTOMER Presentation of SAP Predictive Analytics Content 1 SAP Predictive Analytics Overview....3 2 Deployment Configurations....4 3 SAP Predictive Analytics Desktop

More information

QLIKVIEW SERVER LINEAR SCALING

QLIKVIEW SERVER LINEAR SCALING QLIKVIEW SERVER LINEAR SCALING QlikView Scalability Center Technical Brief Series June 212 qlikview.com Introduction This technical brief presents an investigation about how QlikView Server scales in performance

More information

SWEDBANK EMPOWERS 5,000+ USERS WITH CUSTOMER ANALYSIS TOOL USING QLIKVIEW

SWEDBANK EMPOWERS 5,000+ USERS WITH CUSTOMER ANALYSIS TOOL USING QLIKVIEW SWEDBANK EMPOWERS 5,000+ USERS WITH CUSTOMER ANALYSIS TOOL USING QLIKVIEW QlikView is an immensely powerful Business Discovery platform. The solution gives users the power to gain access to and freely

More information

Data Doesn t Communicate Itself Using Visualization to Tell Better Stories

Data Doesn t Communicate Itself Using Visualization to Tell Better Stories SAP Brief Analytics SAP Lumira Objectives Data Doesn t Communicate Itself Using Visualization to Tell Better Stories Tap into your data big and small Tap into your data big and small In today s fast-paced

More information

Enabling Better Business Intelligence and Information Architecture With SAP Sybase PowerDesigner Software

Enabling Better Business Intelligence and Information Architecture With SAP Sybase PowerDesigner Software SAP Technology Enabling Better Business Intelligence and Information Architecture With SAP Sybase PowerDesigner Software Table of Contents 4 Seeing the Big Picture with a 360-Degree View Gaining Efficiencies

More information

QlikView 11 Source Control Walkthrough

QlikView 11 Source Control Walkthrough QlikView 11 Source Control Walkthrough A QlikView Technology White Paper Originally published: August, 2011 Updated August, 2012 www.qlikview.com 1 Table of Contents BACKGROUND... 3 SOURCE CONTROL BASICS...

More information

The Clear Path to Business Intelligence

The Clear Path to Business Intelligence SAP Solution in Detail SAP Solutions for Small Businesses and Midsize Companies SAP Crystal Solutions The Clear Path to Business Intelligence Table of Contents 3 Quick Facts 4 Optimize Decisions with SAP

More information

MicroStrategy Course Catalog

MicroStrategy Course Catalog MicroStrategy Course Catalog 1 microstrategy.com/education 3 MicroStrategy course matrix 4 MicroStrategy 9 8 MicroStrategy 10 table of contents MicroStrategy course matrix MICROSTRATEGY 9 MICROSTRATEGY

More information

How To Use Qlikview For Utilities

How To Use Qlikview For Utilities QlikView for utilities Improving Asset Management QlikView for utilities: improving asset management Collaboration, visibility and efficiency: necessities for efficient utilisation of data by today s utilities

More information

Create Mobile, Compelling Dashboards with Trusted Business Warehouse Data

Create Mobile, Compelling Dashboards with Trusted Business Warehouse Data SAP Brief SAP BusinessObjects Business Intelligence s SAP BusinessObjects Design Studio Objectives Create Mobile, Compelling Dashboards with Trusted Business Warehouse Data Increase the value of data with

More information

QlikView for utilities. Delivering Unprecedented Customer Intelligence

QlikView for utilities. Delivering Unprecedented Customer Intelligence QlikView for utilities Delivering Unprecedented Customer Intelligence QlikView for utilities: Delivering unprecedented Customer Intelligence Collaboration, visibility and efficiency: necessities for efficient

More information

Unleash your intuition

Unleash your intuition Introducing Qlik Sense Unleash your intuition Qlik Sense is a next-generation self-service data visualization application that empowers everyone to easily create a range of flexible, interactive visualizations

More information

Best Practices for Hadoop Data Analysis with Tableau

Best Practices for Hadoop Data Analysis with Tableau Best Practices for Hadoop Data Analysis with Tableau September 2013 2013 Hortonworks Inc. http:// Tableau 6.1.4 introduced the ability to visualize large, complex data stored in Apache Hadoop with Hortonworks

More information

Empowering Teams and Departments with Agile Visualizations

Empowering Teams and Departments with Agile Visualizations SAP Brief SAP Lumira, Edge Edition Objectives Empowering Teams and Departments with Agile Visualizations A data visualization solution for teams and departments A data visualization solution for teams

More information

Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis

Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis (Version 1.17) For validation Document version 0.1 7/7/2014 Contents What is SAP Predictive Analytics?... 3

More information

ElegantJ BI. White Paper. Considering the Alternatives Business Intelligence Solutions vs. Spreadsheets

ElegantJ BI. White Paper. Considering the Alternatives Business Intelligence Solutions vs. Spreadsheets ElegantJ BI White Paper Considering the Alternatives Integrated Business Intelligence and Reporting for Performance Management, Operational Business Intelligence and Data Management www.elegantjbi.com

More information

Real-Time Analytics: Integrating Social Media Insights with Traditional Data

Real-Time Analytics: Integrating Social Media Insights with Traditional Data SAP Brief SAP Rapid Deployment s SAP HANA Sentiment Intelligence Rapid-Deployment Objectives Real-Time Analytics: Integrating Social Media Insights with Traditional Data Capturing customer sentiment from

More information

9044 - Enhance Performance Management Reporting

9044 - Enhance Performance Management Reporting September 9 11, 2013 9044 - Enhance Performance Management Reporting Anaheim, California and Analysis Leveraging SAP BI Tools Sean Johnson SAP Agenda Overview of Enterprise Performance Management Value

More information

Enabling Better Business Intelligence and Information Architecture With SAP PowerDesigner Software

Enabling Better Business Intelligence and Information Architecture With SAP PowerDesigner Software SAP Technology Enabling Better Business Intelligence and Information Architecture With SAP PowerDesigner Software Table of Contents 4 Seeing the Big Picture with a 360-Degree View Gaining Efficiencies

More information

Using In-Memory Data Fabric Architecture from SAP to Create Your Data Advantage

Using In-Memory Data Fabric Architecture from SAP to Create Your Data Advantage SAP HANA Using In-Memory Data Fabric Architecture from SAP to Create Your Data Advantage Deep analysis of data is making businesses like yours more competitive every day. We ve all heard the reasons: the

More information

Qlik connector for SAP NetWeaver

Qlik connector for SAP NetWeaver Qlik connector for SAP NetWeaver Increasing the value of SAP with quick and flexible data discovery Organizations spend millions of dollars automating their business processes. But unfortunately, many

More information

<Insert Picture Here> Extending Hyperion BI with the Oracle BI Server

<Insert Picture Here> Extending Hyperion BI with the Oracle BI Server Extending Hyperion BI with the Oracle BI Server Mark Ostroff Sr. BI Solutions Consultant Agenda Hyperion BI versus Hyperion BI with OBI Server Benefits of using Hyperion BI with the

More information

WHAT IS THE DIFFERENCE BETWEEN SAN AND NAS AND HOW CAN I USE THEM IN MY QLIKVIEW ENVIRONMENT?

WHAT IS THE DIFFERENCE BETWEEN SAN AND NAS AND HOW CAN I USE THEM IN MY QLIKVIEW ENVIRONMENT? WHAT IS THE DIFFERENCE BETWEEN AND NAS AND HOW CAN I USE THEM IN MY QLIKVIEW ENVIRONMENT? QlikView Technical Brief February 2012 qlikview.com This document will highlight some of the conceptual differences

More information

Qlik Consulting helps you accelerate time to value, mitigate risk, and achieve better ROI 1/35

Qlik Consulting helps you accelerate time to value, mitigate risk, and achieve better ROI 1/35 Qlik Consulting helps you accelerate time to value, mitigate risk, and achieve better ROI 1/35 2/35 3/35 Introduction The Qlik Americas Consulting Catalog is a comprehensive collection of offerings, developed

More information

SAP SE - Legal Requirements and Requirements

SAP SE - Legal Requirements and Requirements Finding the signals in the noise Niklas Packendorff @packendorff Solution Expert Analytics & Data Platform Legal disclaimer The information in this presentation is confidential and proprietary to SAP and

More information

PowerPivot Microsoft s Answer to Self-Service Reporting

PowerPivot Microsoft s Answer to Self-Service Reporting PowerPivot Microsoft s Answer to Self-Service Reporting Microsoft s Latest Foray in the Business Intelligence Arena COLLABORATIVE WHITEPAPER SERIES In the last quarter of 2010, Microsoft first introduced

More information

SAP HANA SPS 09 - What s New? HANA IM Services: SDI and SDQ

SAP HANA SPS 09 - What s New? HANA IM Services: SDI and SDQ SAP HANA SPS 09 - What s New? HANA IM Services: SDI and SDQ (Delta from SPS 08 to SPS 09) SAP HANA Product Management November, 2014 2014 SAP SE or an SAP affiliate company. All rights reserved. 1 Agenda

More information

Integrated Finance, Risk, and Profitability Management for Insurance

Integrated Finance, Risk, and Profitability Management for Insurance SAP Brief SAP for Insurance SAP Cost and Revenue Allocation for Financial Products Objectives Integrated Finance, Risk, and Profitability Management for Insurance Gain deep business insights Gain deep

More information

QLIKVIEW INTEGRATION OVERVIEW

QLIKVIEW INTEGRATION OVERVIEW QLIKVIEW INTEGRATION OVERVIEW QlikView Technology White Paper Series June 211 www.qlikview.com Table of Contents Overview 3 Data Source Integration 4 Standard ODBC/OLE Connections (structured) 4 Non Standard

More information

QlikView for Telecommunications. Delivering Unprecedented Customer Intelligence

QlikView for Telecommunications. Delivering Unprecedented Customer Intelligence QlikView for Telecommunications Delivering Unprecedented Customer Intelligence QlikView for Telecommunications: Delivering unprecedented Customer Intelligence Collaboration, visibility and efficiency:

More information

SAP BusinessObjects Edge BI, Standard Package Preferred Business Intelligence Choice for Growing Companies

SAP BusinessObjects Edge BI, Standard Package Preferred Business Intelligence Choice for Growing Companies SAP Solutions for Small Businesses and Midsize Companies SAP BusinessObjects Edge BI, Standard Package Preferred Business Intelligence Choice for Growing Companies SAP BusinessObjects Edge BI, Standard

More information

QlikView, Creating Business Discovery Application using HDP V1.0 March 13, 2014

QlikView, Creating Business Discovery Application using HDP V1.0 March 13, 2014 QlikView, Creating Business Discovery Application using HDP V1.0 March 13, 2014 Introduction Summary Welcome to the QlikView (Business Discovery Tools) tutorials developed by Qlik. The tutorials will is

More information

Pivot Charting in SharePoint with Nevron Chart for SharePoint

Pivot Charting in SharePoint with Nevron Chart for SharePoint Pivot Charting in SharePoint Page 1 of 10 Pivot Charting in SharePoint with Nevron Chart for SharePoint The need for Pivot Charting in SharePoint... 1 Pivot Data Analysis... 2 Functional Division of Pivot

More information

Reimagining Business with SAP HANA Cloud Platform for the Internet of Things

Reimagining Business with SAP HANA Cloud Platform for the Internet of Things SAP Brief SAP HANA SAP HANA Cloud Platform for the Internet of Things Objectives Reimagining Business with SAP HANA Cloud Platform for the Internet of Things Connect, transform, and reimagine Connect,

More information

SAP BW Columnstore Optimized Flat Cube on Microsoft SQL Server

SAP BW Columnstore Optimized Flat Cube on Microsoft SQL Server SAP BW Columnstore Optimized Flat Cube on Microsoft SQL Server Applies to: SAP Business Warehouse 7.4 and higher running on Microsoft SQL Server 2014 and higher Summary The Columnstore Optimized Flat Cube

More information

Empower Individuals and Teams with Agile Data Visualizations in the Cloud

Empower Individuals and Teams with Agile Data Visualizations in the Cloud SAP Brief SAP BusinessObjects Business Intelligence s SAP Lumira Cloud Objectives Empower Individuals and Teams with Agile Data Visualizations in the Cloud Empower everyone to make data-driven decisions

More information

www.ducenit.com Analance Data Integration Technical Whitepaper

www.ducenit.com Analance Data Integration Technical Whitepaper Analance Data Integration Technical Whitepaper Executive Summary Business Intelligence is a thriving discipline in the marvelous era of computing in which we live. It s the process of analyzing and exploring

More information

Making Data Available on the Web

Making Data Available on the Web Making Data Available on the Web By Simba Technologies Inc. SimbaEngine ODBC SDK Introduction Many companies use web-based services to automate business processes like sales, track items like packages,

More information

QlikView Governance Dashboard Installation

QlikView Governance Dashboard Installation QlikView Governance Dashboard Installation QlikView Governance Dashboard Version 1.1.1 Newton, Massachusetts, January 2014 Authored by QlikTech International AB Copyright Qlik Tech International AB 2014,

More information

Cost-Effective Data Management and a Simplified Data Warehouse

Cost-Effective Data Management and a Simplified Data Warehouse SAP Information Sheet SAP Technology SAP HANA Dynamic Tiering Quick Facts Cost-Effective Data Management and a Simplified Data Warehouse Quick Facts Summary The SAP HANA dynamic tiering option helps application

More information

QlikView for media. Delivering Unprecedented Customer Intelligence

QlikView for media. Delivering Unprecedented Customer Intelligence QlikView for media Delivering Unprecedented Customer Intelligence QLIKVIEW FOR MEDIA: DELIVERING UNPRECEDENTED CUSTOMER INTELLIGENCE Collaboration, visibility and effiiciency: necessities for efficient

More information

SAP Document Center. May 2016. Public

SAP Document Center. May 2016. Public SAP Document Center May 2016 Public The Big Picture for a Digital Platform Applications Applications IoT IoT Platform (Micro-) Services Extensions Icon Digital Boardroom Analytical Applications S/4HANA

More information

SAP HANA SAP s In-Memory Database. Dr. Martin Kittel, SAP HANA Development January 16, 2013

SAP HANA SAP s In-Memory Database. Dr. Martin Kittel, SAP HANA Development January 16, 2013 SAP HANA SAP s In-Memory Database Dr. Martin Kittel, SAP HANA Development January 16, 2013 Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase

More information

2015-09-24. SAP Operational Process Intelligence Security Guide

2015-09-24. SAP Operational Process Intelligence Security Guide 2015-09-24 SAP Operational Process Intelligence Security Guide Content 1 Introduction.... 3 2 Before You Start....5 3 Architectural Overview.... 7 4 Authorizations and Roles.... 8 4.1 Assigning Roles to

More information

Data Integration Checklist

Data Integration Checklist The need for data integration tools exists in every company, small to large. Whether it is extracting data that exists in spreadsheets, packaged applications, databases, sensor networks or social media

More information

Visualization Starter Pack from SAP Overview Enabling Self-Service Data Exploration and Visualization

Visualization Starter Pack from SAP Overview Enabling Self-Service Data Exploration and Visualization Business Intelligence Visualization Starter Pack from SAP Overview Enabling Self-Service Data Exploration and Visualization In today s environment, almost every corporation has to work with enormous data

More information

Outperform Financial Objectives and Enable Regulatory Compliance

Outperform Financial Objectives and Enable Regulatory Compliance SAP Brief Analytics s from SAP SAP s for Enterprise Performance Management Objectives Outperform Financial Objectives and Enable Regulatory Compliance Drive better decisions and streamline the close-to-disclose

More information

Powerful analytics. and enterprise security. in a single platform. microstrategy.com 1

Powerful analytics. and enterprise security. in a single platform. microstrategy.com 1 Powerful analytics and enterprise security in a single platform microstrategy.com 1 Make faster, better business decisions with easy, powerful, and secure tools to explore data and share insights. Enterprise-grade

More information

An Overview of SAP BW Powered by HANA. Al Weedman

An Overview of SAP BW Powered by HANA. Al Weedman An Overview of SAP BW Powered by HANA Al Weedman About BICP SAP HANA, BOBJ, and BW Implementations The BICP is a focused SAP Business Intelligence consulting services organization focused specifically

More information

The Benefits of Data Modeling in Business Intelligence

The Benefits of Data Modeling in Business Intelligence WHITE PAPER: THE BENEFITS OF DATA MODELING IN BUSINESS INTELLIGENCE The Benefits of Data Modeling in Business Intelligence DECEMBER 2008 Table of Contents Executive Summary 1 SECTION 1 2 Introduction 2

More information

Harness the Power of Analytics Across Lines of Business with Speed and Ease

Harness the Power of Analytics Across Lines of Business with Speed and Ease SAP Brief SAP Crystal s Objectives Harness the Power of Analytics Across Lines of Business with Speed and Ease Enable better insight at critical moments of engagement Enable better insight at critical

More information

Mobile app for Android Version 1.2.x, December 2015

Mobile app for Android Version 1.2.x, December 2015 Mobile app for Android Version 1.2.x, December 2015 Introduction This app allows you to access SAP Business One, SAP s enterprise resource planning application for small businesses, anywhere and anytime.

More information

Agil visualisering och dataanalys

Agil visualisering och dataanalys Agil visualisering och dataanalys True Business and IT collaboration in Analytics Niklas Packendorff @packendorff SAPSA Impuls 2014 Legal disclaimer The information in this presentation is confidential

More information

Simplify Complex Architectures and See the Potential Impact of New Technologies

Simplify Complex Architectures and See the Potential Impact of New Technologies SAP Brief SAP Technology SAP PowerDesigner Objectives Simplify Complex Architectures and See the Potential Impact of New Technologies Empower data, information, and enterprise architects Empower data,

More information

The IBM Cognos Platform

The IBM Cognos Platform The IBM Cognos Platform Deliver complete, consistent, timely information to all your users, with cost-effective scale Highlights Reach all your information reliably and quickly Deliver a complete, consistent

More information

SAP BusinessObjects Edge BI, Preferred Business Intelligence. SAP BusinessObjects Portfolio SAP Solutions for Small Businesses and Midsize Companies

SAP BusinessObjects Edge BI, Preferred Business Intelligence. SAP BusinessObjects Portfolio SAP Solutions for Small Businesses and Midsize Companies SAP BusinessObjects Edge BI, Standard Package Preferred Business Intelligence Choice for Growing Companies SAP BusinessObjects Portfolio SAP Solutions for Small Businesses and Midsize Companies Executive

More information

Winning with an Intuitive Business Intelligence Solution for Midsize Companies

Winning with an Intuitive Business Intelligence Solution for Midsize Companies SAP Product Brief SAP s for Small Businesses and Midsize Companies SAP BusinessObjects Business Intelligence, Edge Edition Objectives Winning with an Intuitive Business Intelligence for Midsize Companies

More information

SAP BusinessObjects BI Clients. January 2016

SAP BusinessObjects BI Clients. January 2016 SAP BusinessObjects BI Clients January 2016 SAP Analytics and BI Strategy SAP Analytics Strategy SAP Cloud for Analytics Provide new SaaS Analytics capabilities All analytics capabilities in one product

More information

SAP BusinessObjects Dashboarding Strategy and Statement of Direction

SAP BusinessObjects Dashboarding Strategy and Statement of Direction SAP BusinessObjects Dashboarding Strategy and Statement of Direction www.sap.com TABLE OF CONTENTS DISCLAIMER... 3 INTRODUCTION... 3 Engage with SAP... 3 Background... 3 CUSTOMER EXPECTATIONS AND BUSINESS

More information

SQL Access to OpenEdge Apps

SQL Access to OpenEdge Apps SQL Access to OpenEdge Apps Building a highly performant, embeddable, custom ODBC, JDBC, ADO.NET or OLE.DB driver with OpenAccess. Laurent KIEFFER Solutions Engineer 23 Janvier 2014 OpenAccess in Progress

More information

SRCH2 Solution Brief SRCH2 Event Analytics for Complex Event Streams. Real-Time Transaction Processing with Event Analytics from SRCH2

SRCH2 Solution Brief SRCH2 Event Analytics for Complex Event Streams. Real-Time Transaction Processing with Event Analytics from SRCH2 SRCH2 Solution Brief SRCH2 Event Analytics for Complex Event Streams Objectives Real-Time Transaction Processing with Event Analytics from SRCH2 Solution Benefits Quick Facts Lower the cost and risk of

More information

Data Integration using Integration Gateway. SAP Mobile Platform 3.0 SP02

Data Integration using Integration Gateway. SAP Mobile Platform 3.0 SP02 Data Integration using Integration Gateway SAP Mobile Platform 3.0 SP02 DOCUMENT ID: DC02000-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All rights reserved.

More information