Db2 Web Query for i : Going Beyond Traditional Reporting and BI with Version 2.2.1

Size: px
Start display at page:

Download "Db2 Web Query for i : Going Beyond Traditional Reporting and BI with Version 2.2.1"

Transcription

1 Cognitive Systems Db2 Web Query for i : Going Beyond Traditional Reporting and BI with Version Doug Mack mackd@us.ibm.com Rob Bestgen bestgen@us.ibm.com Db2 Web Query for i From Report Modernization to Business Intelligence with Advanced Visualizations Operational Reporting or Automate Building of Data Warehouse/ Data Mart Infrastructures Simplify Report Authoring by untangling data and documenting relationships/rules Deliver information to those that need it the most, in the forms they desire while maintaining single version of the truth Dashboards Spreadsheets PDF Mobile Devices Embedded in your own applications 2 1

2 Based on an Industry Best Practice Meta Data Layer Query/400 Files/Tables SQL Views SQL Scripts Aggregated Data (MQTs) DATA SOURCES Programs (defined as Stored Procs) Excel Non Db2 for i Data Sources Date Attributes Calculated Fields SYNONYMS User Defined Functions SQL Functions Single Version of the TRUTH ETL BI Data Warehouse Reports/Dashboards/Visualizations or even a Data Warehouse 3 Db2 Web Query History Db2 Web Query was designed to: Modernize RPG and Query/400 Reporting and align with Database Modernization Strategies Leverage IBM i and Db2 for i advances in Analytics Provide a robust, IBM i Analytic Solution Allow you to start small, grow big! Circa 2007 Import Query/400 GUI Authoring Tools Output to Excel, PDF, HTML, active reports Leverages SQE Meta Data Layer Developer Workbench for advanced dashboarding Run Time Licensing Automated job scheduling and distribution Excel Plug In SQLServer as data source Redbook SDK for application integration New GUI Authoring tool JDEdwards Adapter Query/400 conversion tools Improved Dasbhoarding Change Management Run Time Environments Version Simplified Packaging with Express and Standard Core based pricing Mobile Device Support New Security Center New BI Portal Interface Personal Dashboards Db2 Family as data sources Geographical Mapping Wizard Analytics DataMigrator ETL tool for building data warehouses Advanced HTML5 Charts/graphs Db2 Web Query Solution Edition Updated Redbook Updated Education (OD04 1 day class, OD05 3 day advanced workchop) How to get started videos 2016 Version 2.2 Auto Size Dashboards Enhanced DataSource Support for MySQL, Postgres or Generic JDBC Developer Workbench Usability Features Browser or mobile device specific development options 2017 Version InfoAssist PLUS Data Discovery Dynamic Parameters Auto Drill Down and Auto Linked Reports Data Migrator Usability Additional Map Layers (Demographics) 4 2

3 Db2 Web Query Version You already own it!* Steps beyond traditional Business Intelligence into Data Discovery o New data driven Visualization empowers users, analysts, and data scientists Auto drill down and linked reports simplifies navigation Optional Parameters allow dynamic data analysis Enhanced geographical data analysis Consolidate, Prepare, and Transform Data with DataMigrator ETL o Even augment existing data with data from Watson Install or upgrade in 15 minutes with the EZ-Install Package o Includes 100 s of sample reports, for the business and I/T o Leverage included Query/400 tool to modernize GA 12/08/2017 No Charge Upgrade from previous versions** Learn More at ibm.biz/db2webqueryi * QRY/400 owners entitled to Web Query Express w/ limited # of user licenses for no charge ** Assumes currency on SW Maintenance 5 Enhanced In-Document Analytics Think Active Reports for current Db2 Web Query users New default donut charts Tree map providing rich visual information o Size and color of box represent different measurements Ex: Sanyo (green) has high gross profit% but lower revenue (smaller box) Automate report bursting to mobile device users o Based on some key field like REGION 6 3

4 New Visualizations Build with new InfoAssist+ Empower End Users o Visualize Data o Interact with the Data Marquee (overarching) filtering across associated views o Simplified focus of interest Can work as Run Time user or InfoAssist+ User Video Samples included in Product 7 Dynamic Run Time Parameter Selection Change data filters on the fly in reports and dashboards No need to go back in and edit the report to add fields Simplified navigation through data 8 4

5 ENABLE a report to auto link to Other Reports in InfoAssist+ 9 ENABLE a Report to be Auto Linked from Other Reports Add an OPTIONAL Parameter If a parameter is passed to this report, use it to filter the data in the target report and place the parameter in the header of the report Turn on Auto Link Target Now ANY report/chart that contains Product Category can drill down into this chart! 10 5

6 Auto Link Reports: End User Perspective 11 Drag and Drop Filtering 6

7 Drag and Drop Filtering Drag and Drop Filtering 7

8 Geographical Mapping Data Enrichment with Map Layers V2 Already contained many geographical maps o Apply measurements to geo points (city, zip, lat/long) V2.2.1 adds additional layer options o Purchasable from ESRI Lifestyle or population categories Spending habits Population Life Styles Household income Family Size 15 Extending the Power of Db2 Web Query Through Db2 Capabilities Db2 OLAP functions in IBM i 7.3 Augmenting operational data with data from Watson Getting Started with EZ-Install 16 8

9 Salary Analysis Your HR department wants to ensure salaries are equitable across the company and across departments and there aren t outliers or other discrepancies What is the employee s salary compared to the average WITHIN their department? What is an employee s ratio of salary within their department and overall company? For each employee, compare their salary to the two closest behind this person s salary, and the two closest ahead of them in salary 17 The Process Create a SQL Views (or script) and meta data over the view 18 9

10 The Process Build Your Reports/Charts/Dashboards with Db2 Web Query InfoAssist Add additional filters or virtual fields Format header/footer/stylesheet Choose output o Excel, HTML, mobile Add to dashboard Embed in your app Feed into your data warehouse These are fields returned from the view and available in your report 19 Prototype Example: Augmenting Operational Data with Weather Data Augment Data with Weather info Visualize/deploy insights with Db2 Web Query IBM Bluemix Db2 Web Query for i DataMigrator Db2 for i Datamart Db2 for i Order, Product, Inventory and measurements (revenue, COGS) Information Power Systems(IBM i) 20 10

11 Our Operational Data Data from our application Need to: Create relationships(joins) Add Date Dimension Table to get date attributes Consolidate o In theory, data could be coming from non Db2 sources 21 Date Dimension Table Legacy Date OrderDate Date Usage Desired by End Users Order Date Month Order Date Year Order Date Quarter Order Date Day Name Current Date Current Month Current Year Today s Date 30 Same Date Last Year Is it a Weekend? Is it a Holiday? Was there a full moon? Hey, why don t we add the weather for each day!! 22 11

12 Sample Call to Bluemix Service then Shredding into Relational Result Get Weather Almanac Information for Rochester Mn for Aug 10 th SELECT * FROM JSON_TABLE(SYSTOOLS.HTTPGETCLOB (' units=e&start=0810',''), '$' COLUMNS(STATION_ID VARCHAR(100) PATH '$.almanac_summaries.station_id', STATION_NAME VARCHAR(100) PATH '$.almanac_summaries.station_name', ALMANAC_DATE VARCHAR(100) PATH '$.almanac_summaries.almanac_dt', INTERVAL VARCHAR(100) PATH '$.almanac_summaries.interval', AVERAGE_HIGH_TEMP VARCHAR(100) PATH '$.almanac_summaries.avg_hi', AVERAGE_LOW_TEMP VARCHAR(100) PATH '$.almanac_summaries.avg_lo', RECORD_HIGH_TEMP VARCHAR(100) PATH '$.almanac_summaries.record_hi', RECORD_HIGH_YEAR VARCHAR(100) PATH '$.almanac_summaries.record_hi_yr', RECORD_LOW_TEMP VARCHAR(100) PATH '$.almanac_summaries.record_lo', RECORD_LOW_YEAR VARCHAR(100) PATH '$.almanac_summaries.record_lo_yr', MEAN_TEMP VARCHAR(100) PATH '$.almanac_summaries.mean_temp', AVERAGE_PRECIPITATION VARCHAR(100) PATH '$.almanac_summaries.avg_precip', AVERAGE_SNOW VARCHAR(100) PATH '$.almanac_summaries.avg_snow ) ) AS ALMANAC_SUMMARIES; Shredding the Returned JSON Data with the SQL JSON_TABLE Function JSON document JSON_TABLE function Rows and Columns (i.e. a table ) 12

13 Data Flow Calls the API and Shreds the JSON Doc into Db2 A Data Flow is where you define the data sources, transformation, and map to the target tables. Leverage existing Db2 Web Query meta data or create as part of the process Select columns, add where clause, edit SQL, or join files as part of the source transformations Create virtual (derived) columns Choose or create new target table(s) Determine load type (default is insert/update) Test your transformations, edit if necessary 138 Process Flow Schedules the Data Flows runs a data flow for every store location A Process Flow defines a set of steps that execute a series of components or objects, including the data flows that define your extractions, transformation, and load logic. You can define: Data Flow objects that indicate what data to extract and move from data sources to data targets. objects that notify users about the status of the process at specified points. Stored Procedure objects that perform some task before or after a step in the process flow Example: Make a note in the log about success or failure of a load step Connector objects, represented as arrows, that specify execution logic for the other objects included in the process flow Example: If step 1 is successful, take this path. If unsuccessful, take this other path Group objects that specify the flow of a subset of objects within the total flow Example: Group two steps on the process flow and don t send notification until both steps are completed

14 Report/Dashboards Provide Data Analysis including Weather Attributes Each day you get new data automatically Geographical Maps can be used to relate data to store location or city/postalcode Dashboards can answer various questions How many deliveries were LATE on rainy days? 27 Db2 Web Query Installation and Setup With the NEW EZ-Install Package Everything you need to get started in less than 2 hours, including ready to use sample reports! Send request to qu2@us.ibm.com with name, company name and system serial number 28 14

15 Self Guided Tutorials Learn how to build reports quickly with the over 14 chapters of self guided tutorials EZ-Install comes with a completed set of these tutorials that you can use as sample reports Use Wizards to build even more sample reports 29 Sample Reports for the Systems Administrator Built over IBM i Services SQL interfaces into system information Services delivered at various levels of OS and TRs Cross System/LPAR Auto Refreshing Utilization Dashboard Top xx Jobs by: CPU time I/O count Temp. Storage 30 15

16 Insurance The features of Web Query extend the capabilities of our business analysts by allowing them to run accurately detailed drill down reports on demand. Business challenge To gain more insight into marketing and sales strategies, Manhattan Life Group wanted to glean value from its companies disparate data. How could it gain this insight without breaking the bank? Transformation Manhattan Life Group used IBM Db2 Web Query DataMigrator to transform its system of record into a system of insight enabling it to detect hidden patterns within the data, protect against losses and boost profitability. Keinya Trice, Director of Life Acquisition SBU and Analysts Business benefits Delivers enterprise-class analytics cost-effectively Enables cross company data analysis Simplifies ability to meet audit demands Manhattan Life Group Driving new revenue opportunities using IBM Db2 Web Query on IBM i Founded in 1850 and headquartered in Houston, Texas, Manhattan Life Group is a group of four operating life and health insurance companies: The Manhattan Life Insurance Company, Central United Life Insurance Company, Western United Life Assurance Company and Family Life Insurance Company. Licensed in all 50 states, Manhattan Life Group provides secure and innovative life and health insurance products and services throughout the United States and Puerto Rico. Solution components IBM Db2 for i IBM Db2 Web Query for i IBM Db2 Web Query DataMigrator ETL Extension IBM i IBM Power 720 Express IBM Power S814 IBM Systems Lab Services Share this POP03909-USEN IBM Corporation To Learn More Db2 Web Query for i Website Ibm.biz/db2webqueryi Db2 Web Query for i Wiki Ibm.co/db2wqwiki Db2 Web Query Getting Started Enablement: Db2 Web Query Version EZ-Install Follow Db2 Web Query guy Doug Mack on twitter or check out his blog at for the latest info 32 16

Satisfy the Business Using Db2 Web Query

Satisfy the Business Using Db2 Web Query Satisfy the Business Using Db2 Web Query Rob Bestgen Db2 for i Lab Services bestgen@us.ibm.com Blog: db2webqueryi.blogspot.com qu2@us.ibm.com Db2 Web Query for i From Report Modernization to Business Intelligence

More information

Db2 Web Query Demonstration

Db2 Web Query Demonstration Cognitive Systems Db2 Web Query Demonstration Doug Mack Cognitive Systems Lab Services mackd@us.ibm.com Analytics Experiences Insurance Industry: Why are our gross profit on policies sold in South America

More information

Cool Things You Can Do with DB2 Web Query for i

Cool Things You Can Do with DB2 Web Query for i Cool Things You Can Do with DB2 Web Query for i Doug Mack DB2 for i Lab Services mackd@us.ibm.com QU2@us.ibm.com Agenda Quick Introduction A Query/400 Renaissance is underway Use DB2 Web Query for Systems

More information

What s New and Cool Things You Can Do with DB2 Web Query

What s New and Cool Things You Can Do with DB2 Web Query What s New and Cool Things You Can Do with DB2 Web Query Doug Mack DB2 for i Lab Services mackd@us.ibm.com Twitter: @mckdrmoly Blog: db2webqueryi.blogspot.com QU2@us.ibm.com DB2 Web Query for i Intuitive,

More information

How to Get Started with DB2 Web Query

How to Get Started with DB2 Web Query How to Get Started with DB2 Web Query Doug Mack DB2 for i Lab Services mackd@us.ibm.com Twitter: @mckdrmoly Blog: db2webqueryi.blogspot.com QU2@us.ibm.com Agenda Get to Version 2.2 Coming SOON: EASY Install

More information

Using Sample DB2 Web Query Reports and Charts built over IBM i (SQL) Services for System Administrators

Using Sample DB2 Web Query Reports and Charts built over IBM i (SQL) Services for System Administrators Using Sample DB2 Web Query Reports and Charts built over IBM i (SQL) Services for System Administrators For those customers with DB2 Web Query Version 2.2 already installed Table of Contents 1. Sample

More information

Beyond Query/400: Leap into Business Intelligence with DB2 Web Query

Beyond Query/400: Leap into Business Intelligence with DB2 Web Query Beyond Query/400: Leap into Business Intelligence with DB2 Web Query Jarek Miszczyk ISV Solutions Enablement, IBM DB2 for i Team Rochester, MN USA 8 Copyright IBM Corporation, 2008. All Rights Reserved.

More information

Db2 for i Update. Doug Mack Db2 for i Analytics Consultant IBM Systems Lab Services

Db2 for i Update. Doug Mack Db2 for i Analytics Consultant IBM Systems Lab Services Db2 for i Update Doug Mack Db2 for i Analytics Consultant IBM Systems Lab Services mackd@us.ibm.com How is IBM investing in Db2 for i Db2 for i Standard compliant Secure Scalable Functionally Advanced

More information

Test Drive DB2 Web Query with EZ-Install Package Hands On Lab Doug Mack,

Test Drive DB2 Web Query with EZ-Install Package Hands On Lab Doug Mack, Test Drive DB2 Web Query with EZ-Install Package Hands On Lab Doug Mack, mackd@us.ibm.com Page 1 Table of Contents EZ-Install Package... 3 1 Getting to Know the BI Portal... 10 1.1 Signing into the BI

More information

Quick Start to Value with Db2 Web Query EZ-Install

Quick Start to Value with Db2 Web Query EZ-Install Quick Start to Value with Db2 Web Query EZ-Install Doug Mack IBM Lab Services mackd@us.ibm.com QU2@us.ibm.com Agenda Step 1: Get the product installed using EZ-Install Step 2: Take the EZ-Install Test

More information

WebFOCUS Business User Edition 14 Day Trial Five Cool BI and Analytics Things to Try

WebFOCUS Business User Edition 14 Day Trial Five Cool BI and Analytics Things to Try WebFOCUS Business User Edition 14 Day Trial Five Cool BI and Analytics Things to Try Andy McCartney Director of BI and Analytics Product Marketing BUE Overview WebFOCUS, the industry's most complete and

More information

FIVE BEST PRACTICES FOR ENSURING A SUCCESSFUL SQL SERVER MIGRATION

FIVE BEST PRACTICES FOR ENSURING A SUCCESSFUL SQL SERVER MIGRATION FIVE BEST PRACTICES FOR ENSURING A SUCCESSFUL SQL SERVER MIGRATION The process of planning and executing SQL Server migrations can be complex and risk-prone. This is a case where the right approach and

More information

Xcelerated Business Insights (xbi): Going beyond business intelligence to drive information value

Xcelerated Business Insights (xbi): Going beyond business intelligence to drive information value KNOWLEDGENT INSIGHTS volume 1 no. 5 October 7, 2011 Xcelerated Business Insights (xbi): Going beyond business intelligence to drive information value Today s growing commercial, operational and regulatory

More information

QMF Analytics v11: Not Your Green Screen QMF

QMF Analytics v11: Not Your Green Screen QMF QMF Analytics v11: Not Your Green Screen QMF Central Ohio Db2 Users Group CODUG December 5, 2017 Roger Midgette The Fillmore Group Frank Fillmore The Fillmore Group Doug Anderson Rocket Software roger.midgette@thefillmoregroup.com

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

IBM DB2 Web Query for System i

IBM DB2 Web Query for System i IBM DB2 Web Query for System i Tim Yang System i I/T Specialist Howard Pai Technical Support Center i want stress-free IT. i want control. 8 Copyright IBM Corporation, 2007. All Rights Reserved. This publication

More information

QLIKVIEW ARCHITECTURAL OVERVIEW

QLIKVIEW ARCHITECTURAL OVERVIEW QLIKVIEW ARCHITECTURAL OVERVIEW A QlikView Technology White Paper Published: October, 2010 qlikview.com Table of Contents Making Sense of the QlikView Platform 3 Most BI Software Is Built on Old Technology

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

MicroStrategy Desktop Quick Start Guide

MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop Quick Start Guide Version: 10.4 10.4, December 2017 Copyright 2017 by MicroStrategy Incorporated. All rights reserved. Trademark Information The following are either trademarks or

More information

Taking a First Look at Excel s Reporting Tools

Taking a First Look at Excel s Reporting Tools CHAPTER 1 Taking a First Look at Excel s Reporting Tools This chapter provides you with an overview of Excel s reporting features. It shows you the principal types of Excel reports and how you can use

More information

Behind the Glitz - Is Life Better on Another Database Platform?

Behind the Glitz - Is Life Better on Another Database Platform? Behind the Glitz - Is Life Better on Another Database Platform? Rob Bestgen bestgen@us.ibm.com DB2 for i CoE We know the stories My Boss thinks we should move to SQL Server Oracle is being considered for

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

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

Day 1 Agenda. Brio 101 Training. Course Presentation and Reference Material

Day 1 Agenda. Brio 101 Training. Course Presentation and Reference Material Data Warehouse www.rpi.edu/datawarehouse Brio 101 Training Course Presentation and Reference Material Day 1 Agenda Training Overview Data Warehouse and Business Intelligence Basics The Brio Environment

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

MicroStrategy Analytics Desktop

MicroStrategy Analytics Desktop MicroStrategy Analytics Desktop Quick Start Guide MicroStrategy Analytics Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT.

More information

Partner Presentation Faster and Smarter Data Warehouses with Oracle OLAP 11g

Partner Presentation Faster and Smarter Data Warehouses with Oracle OLAP 11g Partner Presentation Faster and Smarter Data Warehouses with Oracle OLAP 11g Vlamis Software Solutions, Inc. Founded in 1992 in Kansas City, Missouri Oracle Partner and reseller since 1995 Specializes

More information

How metadata can reduce query and report complexity As printed in the September 2009 edition of the IBM Systems Magazine

How metadata can reduce query and report complexity As printed in the September 2009 edition of the IBM Systems Magazine Untangling Web Query How metadata can reduce query and report complexity As printed in the September 2009 edition of the IBM Systems Magazine Written by Gene Cobb cobbg@us.ibm.com What is Metadata? Since

More information

Oracle Enterprise Manager 12c IBM DB2 Database Plug-in

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

More information

Logi Info v12.5 WHAT S NEW

Logi Info v12.5 WHAT S NEW Logi Info v12.5 WHAT S NEW Introduction Logi empowers companies to embed analytics into the fabric of their organizations and products enabling anyone to analyze data, share insights, and make informed

More information

WebFOCUS Business User Edition Release Guide Release 8.2 Version 01

WebFOCUS Business User Edition Release Guide Release 8.2 Version 01 WebFOCUS Business User Edition Release Guide Release 8.2 Version 01 November 04, 2016 Active Technologies, EDA, EDA/SQL, FIDEL, FOCUS, Information Builders, the Information Builders logo, iway, iway Software,

More information

DATA MINING AND WAREHOUSING

DATA MINING AND WAREHOUSING DATA MINING AND WAREHOUSING Qno Question Answer 1 Define data warehouse? Data warehouse is a subject oriented, integrated, time-variant, and nonvolatile collection of data that supports management's decision-making

More information

INTRODUCTION. Chris Claterbos, Vlamis Software Solutions, Inc. REVIEW OF ARCHITECTURE

INTRODUCTION. Chris Claterbos, Vlamis Software Solutions, Inc. REVIEW OF ARCHITECTURE BUILDING AN END TO END OLAP SOLUTION USING ORACLE BUSINESS INTELLIGENCE Chris Claterbos, Vlamis Software Solutions, Inc. claterbos@vlamis.com INTRODUCTION Using Oracle 10g R2 and Oracle Business Intelligence

More information

MicroStrategy Desktop Quick Start Guide

MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop Quick Start Guide Version: 10.4 10.4, June 2017 Copyright 2017 by MicroStrategy Incorporated. All rights reserved. If you have not executed a written or electronic agreement with

More information

Stored Processes What are they and how can they be used? Adam Player (Nerd)

Stored Processes What are they and how can they be used? Adam Player (Nerd) Stored Processes What are they and how can they be used? Adam Player (Nerd) Oracle DB2 Operation al data sources SAP XLS Text... Data Nerd Business Analyst Management Data Integration Oracle DB2 SAP Data

More information

Hyperion Interactive Reporting Reports & Dashboards Essentials

Hyperion Interactive Reporting Reports & Dashboards Essentials Oracle University Contact Us: +27 (0)11 319-4111 Hyperion Interactive Reporting 11.1.1 Reports & Dashboards Essentials Duration: 5 Days What you will learn The first part of this course focuses on two

More information

SAP BW 3.5 Enhanced Reporting Capabilities SAP AG

SAP BW 3.5 Enhanced Reporting Capabilities SAP AG SAP BW 3.5 Enhanced Reporting Capabilities SAP AG Learning Objectives As a result of this lecture, you will: Be familiar with Business Explorer (BEx) suite 3.5 Know the available new features Understand

More information

UNLEASHING THE VALUE OF THE TERADATA UNIFIED DATA ARCHITECTURE WITH ALTERYX

UNLEASHING THE VALUE OF THE TERADATA UNIFIED DATA ARCHITECTURE WITH ALTERYX UNLEASHING THE VALUE OF THE TERADATA UNIFIED DATA ARCHITECTURE WITH ALTERYX 1 Successful companies know that analytics are key to winning customer loyalty, optimizing business processes and beating their

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

Chapter 6 VIDEO CASES

Chapter 6 VIDEO CASES Chapter 6 Foundations of Business Intelligence: Databases and Information Management VIDEO CASES Case 1a: City of Dubuque Uses Cloud Computing and Sensors to Build a Smarter, Sustainable City Case 1b:

More information

OLAP Introduction and Overview

OLAP Introduction and Overview 1 CHAPTER 1 OLAP Introduction and Overview What Is OLAP? 1 Data Storage and Access 1 Benefits of OLAP 2 What Is a Cube? 2 Understanding the Cube Structure 3 What Is SAS OLAP Server? 3 About Cube Metadata

More information

Dr. Michael Curry. Oregon. The Big Picture: SQL Overview and Getting the Most from SQL Saturday

Dr. Michael Curry. Oregon. The Big Picture: SQL Overview and Getting the Most from SQL Saturday Dr. Michael Curry michael.curry@wsu.edu Oregon The Big Picture: SQL Overview and Getting the Most from SQL Saturday Academic Data Management E-Commerce Entrepreneurship Dr. Michael Curry /michaellcurry/

More information

TECHNOLOGY BRIEF: CA ERWIN DATA PROFILER. Combining Data Profiling and Data Modeling for Better Data Quality

TECHNOLOGY BRIEF: CA ERWIN DATA PROFILER. Combining Data Profiling and Data Modeling for Better Data Quality TECHNOLOGY BRIEF: CA ERWIN DATA PROFILER Combining Data Profiling and Data Modeling for Better Data Quality Table of Contents Executive Summary SECTION 1: CHALLENGE 2 Reducing the Cost and Risk of Data

More information

Intellicus Getting Started

Intellicus Getting Started Intellicus Getting Started Intellicus Web-based Reporting Suite Version 4.5 Enterprise Professional Smart Developer Smart Viewer Intellicus Technologies info@intellicus.com www.intellicus.com Copyright

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

ER/Studio Enterprise Portal Evaluation Guide. Published: March 6, 2009

ER/Studio Enterprise Portal Evaluation Guide. Published: March 6, 2009 ER/Studio Enterprise Portal 1.0.3 Evaluation Guide Published: March 6, 2009 Contents Introduction to ER/Studio Enterprise Portal 1.0... 3 Session 1: Getting Started with the Enterprise Portal... 4 Session

More information

Whitepaper. Solving Complex Hierarchical Data Integration Issues. What is Complex Data? Types of Data

Whitepaper. Solving Complex Hierarchical Data Integration Issues. What is Complex Data? Types of Data Whitepaper Solving Complex Hierarchical Data Integration Issues What is Complex Data? Historically, data integration and warehousing has consisted of flat or structured data that typically comes from structured

More information

2015 Entrinsik, Inc.

2015 Entrinsik, Inc. 2015 Entrinsik, Inc. Table of Contents Chapter 1: Creating a Dashboard... 3 Creating a New Dashboard... 4 Choosing a Data Provider... 5 Scheduling Background Refresh... 10 Chapter 2: Adding Graphs and

More information

Understanding the SAP HANA Difference. Amit Satoor, SAP Data Management

Understanding the SAP HANA Difference. Amit Satoor, SAP Data Management Understanding the SAP HANA Difference Amit Satoor, SAP Data Management Webinar Logistics Got Flash? http://get.adobe.com/flashplayer to download. The future holds many transformational opportunities Capitalize

More information

Title: Episode 11 - Walking through the Rapid Business Warehouse at TOMS Shoes (Duration: 18:10)

Title: Episode 11 - Walking through the Rapid Business Warehouse at TOMS Shoes (Duration: 18:10) SAP HANA EFFECT Title: Episode 11 - Walking through the Rapid Business Warehouse at (Duration: 18:10) Publish Date: April 6, 2015 Description: Rita Lefler walks us through how has revolutionized their

More information

Service Delivery Platform

Service Delivery Platform Solution Brief Service Delivery Platform Enabling the transition to high-value and more differentiated network services with new consumption models for deploying VNFs. Keeping Up With Cloud Expectations

More information

Microsoft Exam

Microsoft Exam Volume: 42 Questions Case Study: 1 Relecloud General Overview Relecloud is a social media company that processes hundreds of millions of social media posts per day and sells advertisements to several hundred

More information

IDU0010 ERP,CRM ja DW süsteemid Loeng 5 DW concepts. Enn Õunapuu

IDU0010 ERP,CRM ja DW süsteemid Loeng 5 DW concepts. Enn Õunapuu IDU0010 ERP,CRM ja DW süsteemid Loeng 5 DW concepts Enn Õunapuu enn.ounapuu@ttu.ee Content Oveall approach Dimensional model Tabular model Overall approach Data modeling is a discipline that has been practiced

More information

Accelerate your SAS analytics to take the gold

Accelerate your SAS analytics to take the gold Accelerate your SAS analytics to take the gold A White Paper by Fuzzy Logix Whatever the nature of your business s analytics environment we are sure you are under increasing pressure to deliver more: more

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

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

OBT Global presents. SAP Business Information Warehouse. -an overview -

OBT Global presents. SAP Business Information Warehouse. -an overview - OBT Global presents. SAP Business Information Warehouse -an overview - Contents General Overview Architecture Overview Reporting Overview 6/19/2009 2 General Overview 6/19/2009 3 BW Defined BW is SAP's

More information

Built for Speed: Comparing Panoply and Amazon Redshift Rendering Performance Utilizing Tableau Visualizations

Built for Speed: Comparing Panoply and Amazon Redshift Rendering Performance Utilizing Tableau Visualizations Built for Speed: Comparing Panoply and Amazon Redshift Rendering Performance Utilizing Tableau Visualizations Table of contents Faster Visualizations from Data Warehouses 3 The Plan 4 The Criteria 4 Learning

More information

Oracle Enterprise Manager 12c Sybase ASE Database Plug-in

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

More information

Introduction to K2View Fabric

Introduction to K2View Fabric Introduction to K2View Fabric 1 Introduction to K2View Fabric Overview In every industry, the amount of data being created and consumed on a daily basis is growing exponentially. Enterprises are struggling

More information

INSIGHTS, POWERED BY INSIDEVIEW

INSIGHTS, POWERED BY INSIDEVIEW INSIGHTS, POWERED BY INSIDEVIEW Installation Guide Product Version 4.2 OCTOBER, 2017 Table of Contents Chapter 1: Introduction to Insights, powered by InsideView...3 What s New in this Release?... 4 Chapter

More information

Advanced Functions with DB2 and PHP for IBM i

Advanced Functions with DB2 and PHP for IBM i Advanced Functions with DB2 and PHP for IBM i Mike Pavlak Solution Consultant Agenda DB2 features in i6.1 and i7.1 Review DB2 functions in PHP Explore the possibilities Q&A 2 Three primary ingredients

More information

Extend EBS Using Applications Express

Extend EBS Using Applications Express Extend EBS Using Applications Express John Peters JRPJR, Inc. Abstract Few people know about Oracle Applications Express (APEX) an actual free Oracle Tool included with your Oracle DB Licenses. How many

More information

Module 4: Creating Content Lesson 5: Creating Visualizations Try Now!

Module 4: Creating Content Lesson 5: Creating Visualizations Try Now! Module 4: Creating Content Lesson 5: Creating Visualizations Try Now! In this Try Now! exercise, you will be creating a visualization in your Sales domain, based on the data you uploaded from your Microsoft

More information

The Definitive Guide to Preparing Your Data for Tableau

The Definitive Guide to Preparing Your Data for Tableau The Definitive Guide to Preparing Your Data for Tableau Speed Your Time to Visualization If you re like most data analysts today, creating rich visualizations of your data is a critical step in the analytic

More information

SAP HANA Certification Training

SAP HANA Certification Training About Intellipaat Intellipaat is a fast-growing professional training provider that is offering training in over 150 most sought-after tools and technologies. We have a learner base of 600,000 in over

More information

Welcome to the Gathering Intelligence from your Applications and Data: The case for Oracle BI eseminar

Welcome to the Gathering Intelligence from your Applications and Data: The case for Oracle BI eseminar Welcome to the Gathering Intelligence from your Applications and Data: The case for Oracle BI eseminar Agenda 1. PTS Organization 2. The case for Oracle BI by Matt Elumba 3. Additional Resources Milan

More information

INSIGHTS, POWERED BY INSIDEVIEW

INSIGHTS, POWERED BY INSIDEVIEW INSIGHTS, POWERED BY INSIDEVIEW Installation Guide Product Version 4.3 JANUARY, 2019 Table of Contents Chapter 1: Introduction to Insights, powered by InsideView...3 What s New in this Release?... 4 Chapter

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

DecisionPoint For Excel

DecisionPoint For Excel DecisionPoint For Excel Getting Started Guide 2015 Antivia Group Ltd Notation used in this workbook Indicates where you need to click with your mouse Indicates a drag and drop path State >= N Indicates

More information

SAS Web Report Studio 3.1

SAS Web Report Studio 3.1 SAS Web Report Studio 3.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Web Report Studio 3.1: User s Guide. Cary, NC: SAS

More information

Hidden Gems in JD Edwards Orchestrator and AIS Server

Hidden Gems in JD Edwards Orchestrator and AIS Server Hidden Gems in JD Edwards Orchestrator and AIS Server Darryl Shakespeare Senior Director Product Development Oracle JD Edwards EnterpriseOne November 12-17, 2017 Safe Harbor Statement The following is

More information

CloudSwyft Learning-as-a-Service Course Catalog 2018 (Individual LaaS Course Catalog List)

CloudSwyft Learning-as-a-Service Course Catalog 2018 (Individual LaaS Course Catalog List) CloudSwyft Learning-as-a-Service Course Catalog 2018 (Individual LaaS Course Catalog List) Microsoft Solution Latest Sl Area Refresh No. Course ID Run ID Course Name Mapping Date 1 AZURE202x 2 Microsoft

More information

C_HANAIMP142

C_HANAIMP142 C_HANAIMP142 Passing Score: 800 Time Limit: 4 min Exam A QUESTION 1 Where does SAP recommend you create calculated measures? A. In a column view B. In a business layer C. In an attribute view D. In an

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

QQWebAgent and QQMarketing Dashboard Quick Start Guide

QQWebAgent and QQMarketing Dashboard Quick Start Guide QQWebAgent and QQMarketing Dashboard Quick Start Guide Contents Implementing QQWebAgent on Your Web Site... 3 What You Need to Do... 3 Instructions for Web Designers, Webmasters or Web Hosting Provider...

More information

Protemos Quick Start Guide

Protemos Quick Start Guide Protemos Quick Start Guide Get started with Protemos System values settings Add clients Add vendors Add new translation project Create invoices for clients and control their payment Invoices from vendors

More information

Realtests.C_TBW45_70.80 Questions

Realtests.C_TBW45_70.80 Questions Realtests.C_TBW45_70.80 Questions Number: C_TBW45_70 Passing Score: 800 Time Limit: 120 min File Version: 4.6 http://www.gratisexam.com/ C_TBW45_70 SAP Certified Application Associate- Business Intelligence

More information

Přehled novinek v SQL Server 2016

Přehled novinek v SQL Server 2016 Přehled novinek v SQL Server 2016 Martin Rys, BI Competency Leader martin.rys@adastragrp.com https://www.linkedin.com/in/martinrys 20.4.2016 1 BI Competency development 2 Trends, modern data warehousing

More information

2012 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Excel, Lync, Outlook, SharePoint, Silverlight, SQL Server, Windows,

2012 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Excel, Lync, Outlook, SharePoint, Silverlight, SQL Server, Windows, 2012 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Excel, Lync, Outlook, SharePoint, Silverlight, SQL Server, Windows, Windows Server, and other product names are or may be registered

More information

Search for a Target Company

Search for a Target Company Search for a Target Company Search for a company in the Quick Search section by typing the desired company name. Use an asterisk if you are unsure of the exact spelling; i.e.: Reeb* for Reebok. The next

More information

Power BI Desktop Lab

Power BI Desktop Lab Power BI Desktop Lab Fil Schwartz fschwartz@manersolutions.com (517) 323-7500 POWER BI DESKTOP LAB This is a hands on lab for users that have little or no experience with Power BI. We will go through a

More information

Enterprise Data Publishing with Oracle Reports: Any Data, Any Format, Anywhere

Enterprise Data Publishing with Oracle Reports: Any Data, Any Format, Anywhere Enterprise Data Publishing with Oracle Reports: Any Data, Any Format, Anywhere INTRODUCTION In the history of publishing we have used different approaches all with the same goal to provide information

More information

WebCenter Interaction 10gR3 Overview

WebCenter Interaction 10gR3 Overview WebCenter Interaction 10gR3 Overview Brian C. Harrison Product Management WebCenter Interaction and Related Products Summary of Key Points AquaLogic Interaction portal has been renamed

More information

Best Practices for Choosing Content Reporting Tools and Datasources. Andrew Grohe Pentaho Director of Services Delivery, Hitachi Vantara

Best Practices for Choosing Content Reporting Tools and Datasources. Andrew Grohe Pentaho Director of Services Delivery, Hitachi Vantara Best Practices for Choosing Content Reporting Tools and Datasources Andrew Grohe Pentaho Director of Services Delivery, Hitachi Vantara Agenda Discuss best practices for choosing content with Pentaho Business

More information

DEV-33: Get to Know Your Data Open Source Data Integration, Business Intelligence and more Marian Edu

DEV-33: Get to Know Your Data Open Source Data Integration, Business Intelligence and more Marian Edu DEV-33: Get to Know Your Data Open Source, Business Intelligence and more IT Consultant Agenda Take Ownership of Your Data. Data Discovery Reporting Analysis 2 DEV-33: Get to Know Your Data Data Discovery

More information

Microsoft Dynamics 365 for Sales. Workshop Hands-on Lab Book

Microsoft Dynamics 365 for Sales. Workshop Hands-on Lab Book Microsoft Dynamics 365 for Sales Workshop Hands-on Lab Book Table of Contents Lab Overview... 3 Exercise 1: Login to Dynamics 365 Environment... 4 Exercise 2: Follow-up with Tradeshow Customers... 7 Exercise

More information

IBM QMF for Windows for IBM iseries, V7.2 Business Intelligence Starts Here!

IBM QMF for Windows for IBM iseries, V7.2 Business Intelligence Starts Here! Software Announcement February 26, 2002 IBM QMF for Windows for IBM iseries, V7.2 Business Intelligence Starts Here! Overview QMF for Windows for iseries, V7.2, is a multipurpose enterprise query environment

More information

Microsoft Power BI for O365

Microsoft Power BI for O365 Microsoft Power BI for O365 Next hour.. o o o o o o o o Power BI for O365 Data Discovery Data Analysis Data Visualization & Power Maps Natural Language Search (Q&A) Power BI Site Data Management Self Service

More information

The QuickStudy Guide for Zoho CRM

The QuickStudy Guide for Zoho CRM The QuickStudy Guide for Zoho CRM Susan Clark Cornerstone Solutions Inc. Houston The QuickStudy Guide for Zoho CRM Using Zoho Everyday How Did Quick Get Included in the Book Name? Using This QuickStudy

More information

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

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

More information

Data Virtualization Implementation Methodology and Best Practices

Data Virtualization Implementation Methodology and Best Practices White Paper Data Virtualization Implementation Methodology and Best Practices INTRODUCTION Cisco s proven Data Virtualization Implementation Methodology and Best Practices is compiled from our successful

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

Manipulating Database Objects

Manipulating Database Objects Manipulating Database Objects Purpose This tutorial shows you how to manipulate database objects using Oracle Application Express. Time to Complete Approximately 30 minutes. Topics This tutorial covers

More information

QLIKVIEW SCALABILITY BENCHMARK WHITE PAPER

QLIKVIEW SCALABILITY BENCHMARK WHITE PAPER QLIKVIEW SCALABILITY BENCHMARK WHITE PAPER Measuring Business Intelligence Throughput on a Single Server QlikView Scalability Center Technical White Paper December 2012 qlikview.com QLIKVIEW THROUGHPUT

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

MICROSOFT BUSINESS INTELLIGENCE

MICROSOFT BUSINESS INTELLIGENCE SSIS MICROSOFT BUSINESS INTELLIGENCE 1) Introduction to Integration Services Defining sql server integration services Exploring the need for migrating diverse Data the role of business intelligence (bi)

More information

Business Analytics Nanodegree Syllabus

Business Analytics Nanodegree Syllabus Business Analytics Nanodegree Syllabus Master data fundamentals applicable to any industry Before You Start There are no prerequisites for this program, aside from basic computer skills. You should be

More information

Extending Epicor ERP Epicor Software Corporation

Extending Epicor ERP Epicor Software Corporation Extending Epicor ERP 2017 Epicor Software Corporation Agenda ERP Stack and Extensibility Landscape Innovating at Pace Future Education Summary ERP 10.1 Stack 3 Epicor ERP 10.1 ERP Client C# HTTP(S) or

More information

Cisco Tetration Analytics

Cisco Tetration Analytics Cisco Tetration Analytics Enhanced security and operations with real time analytics John Joo Tetration Business Unit Cisco Systems Security Challenges in Modern Data Centers Securing applications has become

More information