Business Analytics: Asking the Right Questions. Ben Porterfield Founder, VP Engineering

Size: px
Start display at page:

Download "Business Analytics: Asking the Right Questions. Ben Porterfield Founder, VP Engineering"

Transcription

1 Business Analytics: Asking the Right Questions Ben Porterfield Founder, VP Engineering

2 BUSINESS INTELLIGENCE Operational Control How many sales did I do today? Understand & Improve Experience Are users engaging? Do they like the new features? Make business decisions Should we start delivering in a new city?

3 Data indicated that the same subscribers who loved the original BBC production also gobbled down movies starring Kevin Spacey or directed by David Fincher ANDREW LEONARD Salon

4 1 Tracking Data 1 The Analytical Process 2 Storing Data 3 Merging Data (ETL) 4 Retrieving Data 5 Analysis & Decision Making

5 Tracking Data

6 What To Track? Transactional Event Users Orders Inventory Views Clicks In-app actions

7 Tracking - Event Data Embed in product process Serverside too Taxonomy matters Every new feature should come with events Lots of nontransactional events happen on server Big flat event space becomes unwieldy

8 Storing Data

9 Storing - Transactional Data Go with SQL Store all states Keep it clean NoSQL could be a burden long-term Even offline processes Messy schema = complicated analytics

10 We were relying on MongoDB while it was easier for developers to play with the data, it became a hurdle for other team members. MICHAEL ERASMUS Back-end Engineer, Buffer

11 Storing - Event Data Own it Use ecosystem too Store all the IDs Or, at a minimum, be able to get it Lots of great SaaS event platforms Need to be able to correlate events to transactions

12 Merging Data

13 You should combine transaction and event data, +more Transactional Data Application Other Data? Event Data Use an analytical database Redshift is current leader Difficult - data is heavy Raw Queries WITH user_order_activity AS ( SELECT user_id, age FROM ORDERS GROUP BY user_id) SELECT AVG(users.age) as average_age_of_purchaser FROM user_order_activity LEFT JOIN users ON user_order_activity.user_id = users.user_id Biz-User Tools

14 Traditional Approach DIFFICULT & COMBERSOME ETL - Heavy Transformation SILOED OLAP / Data Summaries LIMITED Restricted Q&A EVENT DATA TRANSACTIONAL DATA A B X E F A L Q D P B I M G S N Q R SUMMARY A C B? ETL TEAM EDW TEAM BI TEAM END USER WANT TO ASK NEW QUESTIONS?

15 Modern Approach CONSOLIDATED Simple Extract & Load AGILE Data Modeling Layer FLEXIBLE Transformation at Query ACCESSIBLE Anywhere for Anyone EVENT DATA TRANSACTIONAL DATA A Z B Q G A Q G D Q MPP REDSHIFT IMPALA U P I M Z S U Q N T R S A W X - name: first_purchasers type: single_value base_view: orders measures: [orders.first_purchase_count] listen: Data Model - name: orders_by_day_and_category title: "Orders by Day and Category" type: looker_area base_view: order_items A Z ANY DEVICE 3 RD PARTY APP API DATA TEAM INNOVATION END USERS

16 Asana s Data Infrastructure

17 Retrieving Data

18 We have a developer name Juan and any reports we needed would flow through him. TODD LEHR SVP Engineering, Dollar Shave Club

19 When he got backlogged, our team didn t have access to the data immediately. TODD LEHR SVP Engineering, Dollar Shave Club

20 Initially whenever we were asked for data, we would write a custom script ANNIE CORBETT Business Intelligence Analyst, Venmo

21 ..and then repeat this process whenever the product team wanted to extend the timeframe. ANNIE CORBETT Business Intelligence Analyst, Venmo

22 What s selling? What colors and sizes is it selling in? Questions from a retail buyer at e-commerce store: What s getting returned? Is there a particular size/color? Is there a product people buy first that increases their likelihood of becoming a repeat customer?

23 Self-Service is Key Get them the tool Decisions vs. data science Gamechanging insights People with questions are running the businesses. Should we open a new market in Maine? Don t only come from analyst group

24 Analysis and Decision Making

25 1 1 Clearly define success metrics Analysis and Decision Making 2 Look for low-hanging fruit 3 Go one level deeper

26 Analysis and Decision Making: Success Metrics

27 SUCCESS METRICS Focus on desired outcome What do you want users to experience? Measure Engagement In most cases this is first-line business analytics Measure Retention Are people coming back?

28 HOW TO TRACK ENGAGEMENT? Not with page views Usually not even with time on page Upworthy s attention minutes Lots of indicators (mouse, video, etc) Looker s approximate usage Any event in 2 minute window

29 Deriving Approximate Usage created_date user_id count approximate_usage SELECT event.created_at AS created_date, event.user_id as user_id, COUNT(*) AS count, COUNT(DISTINCT CONCAT( 1/10 1/10 1/ minutes 50 minutes 80 minutes CONCAT(event.user_id,' ',event.user_browser_id), FLOOR(UNIX_TIMESTAMP(event.created_at)/(60*2)) ) )*2 AS approximate_usage_in_minutes FROM event GROUP BY created_date, user_id

30 Derived Tables Transactional Derived Table Analytical SELECT orders.user_id as user_id COUNT(*) as lifetime_orders MIN(orders.created_at) as first_order MAX(orders.created_at) as latest_order COUNT(DISTINCT DATE_TRUNC('month )) as distinct_months_with_orders FROM orders GROUP BY user_id Event Insights

31 Derived Tables Start simple Most useful at row level Great for cohorts and sessionization Subselects until slow, SQL on cron works surprisingly well Don t roll up data, precompute facts Tiered derived dimension vs. some other metric

32 Derived Table - User Order Facts SELECT orders.user_id as user_id COUNT(*) as lifetime_orders MIN(orders.created_at) as first_order MAX(orders.created_at) as latest_order COUNT(DISTINCT DATE_TRUNC('month )) as distinct_months_with_orders FROM orders GROUP BY user_id user_id lifetime_orders first_order latest_order distinct_months_with_orders /10/15 2/14/15 2

33 Derived Table + Sourcing

34 Derived Table + Sourcing

35 Usage How likely to purchase if they do X Retention Are users coming back Repeat buyers What s different about them Churn Users that will likely never do X again Time to transaction How long till first X??? Invent a metric

36 Pay/Charge Mistake.

37 It was clear some users were accidentally paying instead of charging, but it wasn't clear how widespread the problem was and whether it was worth prioritizing a fix Inventing Metrics

38 Inventing Metrics Identify behavior Measure % of population Experiment Can be good or bad just something possibly significant Who is doing this thing? Ability to play with numbers is crucial

39 Analysis and Decision Making: Low-hanging Fruit

40 Low-hanging Fruit This is the kind of very visual, very data driven piece of analysis that helps us think, "Is opening the sale at noon the right decision????

41 Out of stocks are huge detractors from the customer experience - it sucks ordering something and then not getting it - as well as revenue we failed to capture Low-hanging Fruit

42 Analysis and Decision Making: One Level Deeper

43 One Level Deeper While this immediate insight might have led us to focus on small groups, this didn t match our expectations of people planning an outing on a Friday night, prompting us to look further. Group Size Time To Book 2 3 4

44 We analyze all the platform data available - When someone attempts to sign, completes the signup, pushes an app, has spend, etc One Level Deeper

45 Even though it looks like we were having nice incremental growth, looking into the details we see some things to look into further One Level Deeper

46 Don t confuse an increase in a metric with success.

47 Takeaways Put data in analytical database Give business users tool Define success metrics Make sure it s fast and speaks SQL Empower them to answer their own questions Focus on engagement and retention

48 Ben Porterfield Founder, VP Engineering

Step-by-step data transformation

Step-by-step data transformation Step-by-step data transformation Explanation of what BI4Dynamics does in a process of delivering business intelligence Contents 1. Introduction... 3 Before we start... 3 1 st. STEP: CREATING A STAGING

More information

Data Modeling in Looker

Data Modeling in Looker paper Data Modeling in Looker Quick iteration of metric calculations for powerful data exploration By Joshua Moskovitz The Reusability Paradigm of LookML At Looker, we want to make it easier for data analysts

More information

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

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

More information

Magento U. Getting Started with Magento Business Intelligence Essentials

Magento U. Getting Started with Magento Business Intelligence Essentials Magento U Getting Started with Magento Business Intelligence Essentials Leah Ard Solutions Architect, Magento Business Intelligence Nate Golubiewski Solutions Consultant, Magento Agenda Overview: Magento

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

2016 All Rights Reserved

2016 All Rights Reserved 2016 All Rights Reserved Table of Contents Chapter 1: The Truth About Safelists What is a Safelist Safelist myths busted Chapter 2: Getting Started What to look for before you join a Safelist Best Safelists

More information

1 AKAMAI Edge EMEA # E d g e E M E A

1 AKAMAI Edge EMEA # E d g e E M E A 1 AKAMAI Edge EMEA 2018 There is No Compromise for Great CX Patrik Wallin Head of Development and IT Operations, Gymgrossisten Alan Cooper Principal Architect, Skyscanner 2 AKAMAI Edge EMEA 2018 About

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

Evaluation Guide for ASP.NET Web CMS and Experience Platforms

Evaluation Guide for ASP.NET Web CMS and Experience Platforms Evaluation Guide for ASP.NET Web CMS and Experience Platforms CONTENTS Introduction....................... 1 4 Key Differences...2 Architecture:...2 Development Model...3 Content:...4 Database:...4 Bonus:

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

Creating a Recommender System. An Elasticsearch & Apache Spark approach

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

More information

Diploma in Digital Marketing - Part I

Diploma in Digital Marketing - Part I Diploma in Digital Marketing - Part I Lesson 6 Sales Funnel Nurturing Your Lead Flow Presented by: Richard Hegarty Course Educator Conversion When a person actually completes and meets the overall objectives

More information

How to integrate data into Tableau

How to integrate data into Tableau 1 How to integrate data into Tableau a comparison of 3 approaches: ETL, Tableau self-service and WHITE PAPER WHITE PAPER 2 data How to integrate data into Tableau a comparison of 3 es: ETL, Tableau self-service

More information

Cement Manufacturer Gains High Availability, Improves Business Performance with Real Time Reports

Cement Manufacturer Gains High Availability, Improves Business Performance with Real Time Reports Microsoft SQL Server Customer Solution Case Study Cement Manufacturer Gains High Availability, Improves Business Performance with Real Time Reports Overview Country or Region: India Industry: Manufacturing

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

ETL is No Longer King, Long Live SDD

ETL is No Longer King, Long Live SDD ETL is No Longer King, Long Live SDD How to Close the Loop from Discovery to Information () to Insights (Analytics) to Outcomes (Business Processes) A presentation by Brian McCalley of DXC Technology,

More information

The Quick Guide to Better Site Search

The Quick Guide to Better Site Search The Quick Guide to Better Site Search Start improving your site search today sli-systems.com sli-systems.com.au sli-systems.co.uk To accelerate your e-commerce, start with site search Turn Your Browsers

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

Test-driven development

Test-driven development Test-driven development And how we do it at WIX Mantas Indrašius Software Engineer WIX.COM Agenda Tests overview Test-driven development (TDD) The Bowling Game demo Kickstarting a project using TDD How

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

CULTIVATING LOYALTY WITH DATA-DRIVEN MESSAGING Accelerate Your Messaging Strategy SEPTEMBER 14, 2017

CULTIVATING LOYALTY WITH DATA-DRIVEN MESSAGING Accelerate Your Messaging Strategy SEPTEMBER 14, 2017 CULTIVATING LOYALTY WITH DATA-DRIVEN MESSAGING Accelerate Your Messaging Strategy SEPTEMBER 14, 2017 MEET TODAY S SPEAKERS Bernardine Wu FitForCommerce Founder & CEO Jay Greenberg FitForCommerce Sr. Consultant

More information

A quick guide to... Split-Testing

A quick guide to... Split-Testing A quick guide to... Split-Testing In this guide... Learn how you can get the best results from your email campaign by testing it first! Just create up to five messages, with different personalization techniques,

More information

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

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

More information

Web Analytics Key Metrics and KPIs Version 1.0

Web Analytics Key Metrics and KPIs Version 1.0 Web Analytics Key Metrics and KPIs Version 1.0 Web Analytics Association 2300 M Street, Suite 800 Washington DC 20037 standards@webanalyticsassociation.org Table of Contents Table of Contents 2 Introduction

More information

The SD-WAN security guide

The SD-WAN security guide The SD-WAN security guide How a flexible, software-defined WAN can help protect your network, people and data SD-WAN security: Separating fact from fiction For many companies, the benefits of SD-WAN are

More information

JAVASCRIPT CHARTING. Scaling for the Enterprise with Metric Insights Copyright Metric insights, Inc.

JAVASCRIPT CHARTING. Scaling for the Enterprise with Metric Insights Copyright Metric insights, Inc. JAVASCRIPT CHARTING Scaling for the Enterprise with Metric Insights 2013 Copyright Metric insights, Inc. A REVOLUTION IS HAPPENING... 3! Challenges... 3! Borrowing From The Enterprise BI Stack... 4! Visualization

More information

Digital Marketing Manager, Marketing Manager, Agency Owner. Bachelors in Marketing, Advertising, Communications, or equivalent experience

Digital Marketing Manager, Marketing Manager, Agency Owner. Bachelors in Marketing, Advertising, Communications, or equivalent experience Persona name Amanda Industry, geographic or other segments B2B Roles Digital Marketing Manager, Marketing Manager, Agency Owner Reports to VP Marketing or Agency Owner Education Bachelors in Marketing,

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

BUYER S GUIDE WEBSITE DEVELOPMENT

BUYER S GUIDE WEBSITE DEVELOPMENT BUYER S GUIDE WEBSITE DEVELOPMENT At Curzon we understand the importance of user focused design. EXECUTIVE SUMMARY This document is designed to provide prospective clients with a short guide to website

More information

Windows 10 IoT Overview. Microsoft Corporation

Windows 10 IoT Overview. Microsoft Corporation Windows 10 IoT Overview Microsoft Corporation 25 $7.2 BILLION TRILLION Connected things will by 2020 be in use by 2020 worldwide market for IoT solutions IDC: Worldwide and Regional Internet of Things

More information

Big Data Technology Ecosystem. Mark Burnette Pentaho Director Sales Engineering, Hitachi Vantara

Big Data Technology Ecosystem. Mark Burnette Pentaho Director Sales Engineering, Hitachi Vantara Big Data Technology Ecosystem Mark Burnette Pentaho Director Sales Engineering, Hitachi Vantara Agenda End-to-End Data Delivery Platform Ecosystem of Data Technologies Mapping an End-to-End Solution Case

More information

MAPR DATA GOVERNANCE WITHOUT COMPROMISE

MAPR DATA GOVERNANCE WITHOUT COMPROMISE MAPR TECHNOLOGIES, INC. WHITE PAPER JANUARY 2018 MAPR DATA GOVERNANCE TABLE OF CONTENTS EXECUTIVE SUMMARY 3 BACKGROUND 4 MAPR DATA GOVERNANCE 5 CONCLUSION 7 EXECUTIVE SUMMARY The MapR DataOps Governance

More information

Data-Intensive Distributed Computing

Data-Intensive Distributed Computing Data-Intensive Distributed Computing CS 451/651 431/631 (Winter 2018) Part 5: Analyzing Relational Data (1/3) February 8, 2018 Jimmy Lin David R. Cheriton School of Computer Science University of Waterloo

More information

BIG DATA ANALYTICS A PRACTICAL GUIDE

BIG DATA ANALYTICS A PRACTICAL GUIDE BIG DATA ANALYTICS A PRACTICAL GUIDE STEP 1: GETTING YOUR DATA PLATFORM IN ORDER Big Data Analytics A Practical Guide / Step 1: Getting your Data Platform in Order 1 INTRODUCTION Everybody keeps extolling

More information

Massive Scalability With InterSystems IRIS Data Platform

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

More information

Building a Data Strategy for a Digital World

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

More information

Introducing. Worldpay Total. Worldpay international omni-channel payment solution

Introducing. Worldpay Total. Worldpay international omni-channel payment solution Introducing Worldpay Total Worldpay international omni-channel payment solution All your channels, connected Whatever the sales channel, however your customers want to pay, Worldpay Total has it covered.

More information

CASE STUDY FINANCE. Enhancing software development with SQL Monitor

CASE STUDY FINANCE. Enhancing software development with SQL Monitor CASE STUDY FINANCE Enhancing software development with SQL Monitor We were using another SQL monitoring tool, but it wasn t providing us with the flexibility and features we needed. Founded in 2006, Xero

More information

Messenger Bots For Business. Why & How

Messenger Bots For Business. Why & How Messenger Bots For Business. Why & How Messenger Bots are starting to "pop up" everywhere! You need to add them to your marketing toolkit before your competitors do!!! Your Marketing Doctors: Dean Renfro

More information

Data 101 Which DB, When Joe Yong Sr. Program Manager Microsoft Corp.

Data 101 Which DB, When Joe Yong Sr. Program Manager Microsoft Corp. 17-18 March, 2018 Beijing Data 101 Which DB, When Joe Yong Sr. Program Manager Microsoft Corp. The world is changing AI increased by 300% in 2017 Data will grow to 44 ZB in 2020 Today, 80% of organizations

More information

USE CASE. Collect CLOSED CASE FEEDBACK. Salesforce Workflow. Clicktools Deployment TWO DEPLOYMENT APPROACHES. The basic activity flow goes like this:

USE CASE. Collect CLOSED CASE FEEDBACK. Salesforce Workflow. Clicktools Deployment TWO DEPLOYMENT APPROACHES. The basic activity flow goes like this: USE CASE Support clearly has a major impact on customer experience, which is why it s a starting point for many Clicktools implementations. This document outlines an example solution for a closed case/ticket

More information

16 Data Visualizations. to Improve Your Application

16 Data Visualizations. to Improve Your Application 16 Data Visualizations to Improve Your Application Table of Contents Best data visualizations to boost customer satisfaction Introduction 2 Types of Visualizations 3 Static vs. Animated Charts 6 Drilldowns

More information

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

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

More information

EPISODE 23: HOW TO GET STARTED WITH MAILCHIMP

EPISODE 23: HOW TO GET STARTED WITH MAILCHIMP EPISODE 23: HOW TO GET STARTED WITH MAILCHIMP! 1 of! 26 HOW TO GET STARTED WITH MAILCHIMP Want to play a fun game? Every time you hear the phrase email list take a drink. You ll be passed out in no time.

More information

Mobile Test Automation is not Rocket Science! Baris

Mobile Test Automation is not Rocket Science! Baris Mobile Test Automation is not Rocket Science! Baris Baris Sarialioglu... Managing Partner, Consultant, Trainer ex-sw Developer, ex-cmmi Consultant, ex-employee, Infineon, Boeing, Siemens, Huawei, UniCredit

More information

Managing Data at Scale: Microservices and Events. Randy linkedin.com/in/randyshoup

Managing Data at Scale: Microservices and Events. Randy linkedin.com/in/randyshoup Managing Data at Scale: Microservices and Events Randy Shoup @randyshoup linkedin.com/in/randyshoup Background VP Engineering at Stitch Fix o Combining Art and Science to revolutionize apparel retail Consulting

More information

How to Power Up Your -Marketing ROI FulcrumTech, LLC. All Rights Reserved.

How to Power Up Your  -Marketing ROI FulcrumTech, LLC. All Rights Reserved. 1 How to Power Up Your Email-Marketing ROI 2 What ROI Should You Email marketing continues to be an incredibly cost-effective marketing tool. A 2016 survey of U.S. marketers revealed that email generated

More information

QUALITY MONITORING AND

QUALITY MONITORING AND BUSINESS INTELLIGENCE FOR CMS DATA QUALITY MONITORING AND DATA CERTIFICATION. Author: Daina Dirmaite Supervisor: Broen van Besien CERN&Vilnius University 2016/08/16 WHAT IS BI? Business intelligence is

More information

Why Google Analytics?

Why Google Analytics? 5 Ways to Use Google Google s Enhanced Analytics for CRO That You Haven't Thought Of Campaigns - 5 things you need to know What the AdWords Update Means for Your Paid Search Strategy 5 Ways to Use Google

More information

Hybrid Data Platform

Hybrid Data Platform UniConnect-Powered Data Aggregation Across Enterprise Data Warehouses and Big Data Storage Platforms A Percipient Technology White Paper Author: Ai Meun Lim Chief Product Officer Updated Aug 2017 2017,

More information

Intelligence for the connected world How European First-Movers Manage IoT Analytics Projects Successfully

Intelligence for the connected world How European First-Movers Manage IoT Analytics Projects Successfully Intelligence for the connected world How European First-Movers Manage IoT Analytics Projects Successfully Thomas Rohrmann, Michael Probst Analytics Experience 2016, Rome #analyticsx C opyr i g ht 2016,

More information

Pervasive PSQL Summit v10 Highlights Performance and analytics

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

More information

Building High Performance Apps using NoSQL. Swami Sivasubramanian General Manager, AWS NoSQL

Building High Performance Apps using NoSQL. Swami Sivasubramanian General Manager, AWS NoSQL Building High Performance Apps using NoSQL Swami Sivasubramanian General Manager, AWS NoSQL Building high performance apps There is a lot to building high performance apps Scalability Performance at high

More information

The ONZU HUB is a SAAS solution that automatically stores, preps and indexes your content. Once in the system you can play your content pieces out

The ONZU HUB is a SAAS solution that automatically stores, preps and indexes your content. Once in the system you can play your content pieces out ONZU HUB Whitepaper The ONZU HUB is a SAAS solution that automatically stores, preps and indexes your content. Once in the system you can play your content pieces out wherever you like. No matter the format,

More information

A Methodology to Build Lasting, Intelligent Cybersecurity Programs

A Methodology to Build Lasting, Intelligent Cybersecurity Programs EBOOK Risk-Centric Cybersecurity Management : A Methodology to Build Lasting, Intelligent Cybersecurity Programs A Brinqa ebook Think InfoSec is ready to keep your enterprise secure through the next transformative

More information

BUILD BETTER MICROSOFT SQL SERVER SOLUTIONS Sales Conversation Card

BUILD BETTER MICROSOFT SQL SERVER SOLUTIONS Sales Conversation Card OVERVIEW SALES OPPORTUNITY Lenovo Database Solutions for Microsoft SQL Server bring together the right mix of hardware infrastructure, software, and services to optimize a wide range of data warehouse

More information

Strategies That Work

Strategies That Work Email Strategies That Work Your focus questions for today: 1. What kinds of cookie content can I create? What type of content will reward my reader for consuming it? 2. When and how will I make an offer

More information

The Four Biggest Mistakes B2B Companies Make With Their Website That Drives Visitors Away To The Competition And How To Keep Them From Leaving.

The Four Biggest Mistakes B2B Companies Make With Their Website That Drives Visitors Away To The Competition And How To Keep Them From Leaving. The Four Biggest Mistakes B2B Companies Make With Their Website That Drives Visitors Away To The Competition And How To Keep Them From Leaving. Includes A Website Effectiveness Solution Checklist By Keith

More information

THE API DEVELOPER EXPERIENCE ENABLING RAPID INTEGRATION

THE API DEVELOPER EXPERIENCE ENABLING RAPID INTEGRATION THE API DEVELOPER EXPERIENCE ENABLING RAPID INTEGRATION Ramchandar Loganathan IBS Solution Architect Banks require application programming interface (API) capabilities to realize the significant benefits

More information

The most powerful multi-channel user engagement platform

The most powerful multi-channel user engagement platform The most powerful multi-channel user engagement platform WebEngage - The Company WebEngage is a multi-channel user engagement platform. It automates your communication across your user's lifecycle and

More information

Meet our Example Buyer Persona Adele Revella, CEO

Meet our Example Buyer Persona Adele Revella, CEO Meet our Example Buyer Persona Adele Revella, CEO 685 SPRING STREET, NO. 200 FRIDAY HARBOR, WA 98250 W WW.BUYERPERSONA.COM You need to hear your buyer s story Take me back to the day when you first started

More information

In-Memory Data Management

In-Memory Data Management In-Memory Data Management Martin Faust Research Assistant Research Group of Prof. Hasso Plattner Hasso Plattner Institute for Software Engineering University of Potsdam Agenda 2 1. Changed Hardware 2.

More information

MongoDB Schema Design for. David Murphy MongoDB Practice Manager - Percona

MongoDB Schema Design for. David Murphy MongoDB Practice Manager - Percona MongoDB Schema Design for the Click "Dynamic to edit Master Schema" title World style David Murphy MongoDB Practice Manager - Percona Who is this Person and What Does He Know? Former MongoDB Master Former

More information

CURZON PR BUYER S GUIDE WEBSITE DEVELOPMENT

CURZON PR BUYER S GUIDE WEBSITE DEVELOPMENT CURZON PR BUYER S GUIDE WEBSITE DEVELOPMENT Website Development WHAT IS WEBSITE DEVELOPMENT? This is the development of a website for the Internet (World Wide Web) Website development can range from developing

More information

Emerging Landscape of IT. Hishamul Hasheel,Vice President Software & Security, Redington Gulf - Value Division

Emerging Landscape of IT. Hishamul Hasheel,Vice President Software & Security, Redington Gulf - Value Division Emerging Landscape of IT Hishamul Hasheel,Vice President Software & Security, Redington Gulf - Value Division SOME PEOPLE DON T LIKE CHANGE BUT YOU NEED TO EMBRACE CHANGE IF THE ALTERNATIVE IS DISASTER

More information

IDERA HELPS PPG INDUSTRIES REDUCE SQL SERVER BACKUP STORAGE COSTS BY OVER 70%

IDERA HELPS PPG INDUSTRIES REDUCE SQL SERVER BACKUP STORAGE COSTS BY OVER 70% IDERA HELPS PPG INDUSTRIES REDUCE SQL SERVER BACKUP STORAGE COSTS BY OVER 70% PPG LEVERAGES IDERA S ON 60 MICROSOFT SQL SERVERS ACROSS THE US AND CANADA PROCESSING MORE THAN 3,400 BACKUPS PER DAY PPG Industries,

More information

5 KEY REASONS FOR USING TELERIK PLATFORM MBAAS

5 KEY REASONS FOR USING TELERIK PLATFORM MBAAS 5 KEY REASONS FOR USING TELERIK PLATFORM MBAAS Don t Reinvent the Wheel Mobile backend as a service (MBaaS) offers sophisticated capabilities that you can use right off the bat in your mobile apps to make

More information

TWOO.COM CASE STUDY CUSTOMER SUCCESS STORY

TWOO.COM CASE STUDY CUSTOMER SUCCESS STORY TWOO.COM CUSTOMER SUCCESS STORY With over 30 million users, Twoo.com is Europe s leading social discovery site. Twoo runs the world s largest scale-out SQL deployment, with 4.4 billion transactions a day

More information

SQL in the Hybrid World

SQL in the Hybrid World SQL in the Hybrid World Tanel Poder a long time computer performance geek 1 Tanel Põder Intro: About me Oracle Database Performance geek (18+ years) Exadata Performance geek Linux Performance geek Hadoop

More information

& Cross-Channel Customer Engagement RFP Guide

& Cross-Channel Customer Engagement RFP Guide Email & Cross-Channel Customer Engagement RFP Guide Customer Engagement in a Perpetually Connected World Today s perpetually connected customer is interacting with your brand through digital, mobile &

More information

CASE STUDY FINANCE. Republic Bank Streamlining database deployments with SQL Compare

CASE STUDY FINANCE. Republic Bank Streamlining database deployments with SQL Compare CASE STUDY FINANCE Republic Bank Streamlining database deployments with SQL Compare In a previous life, SQL Server database comparisons and deployments were run using manually compiled scripts. Headquartered

More information

Fully Optimize FULLY OPTIMIZE YOUR DBA RESOURCES

Fully Optimize FULLY OPTIMIZE YOUR DBA RESOURCES Fully Optimize FULLY OPTIMIZE YOUR DBA RESOURCES IMPROVE SERVER PERFORMANCE, UPTIME, AND AVAILABILITY WHILE LOWERING COSTS WE LL COVER THESE TOP WAYS TO OPTIMIZE YOUR RESOURCES: 1 Be Smart About Your Wait

More information

QUESTIONS YOUR E-COMMERCE WEB DESIGNER SHOULD ASK YOU

QUESTIONS YOUR E-COMMERCE WEB DESIGNER SHOULD ASK YOU QUESTIONS YOUR E-COMMERCE WEB DESIGNER SHOULD ASK YOU Phone: +61 3 901 35868 Email: info@designomate.com Your web designer is the architect as well as the mason to your e-store.hire a web designer who

More information

Business Hacks to grow your list with Social Media Marketing

Business Hacks to grow your list with Social Media Marketing Business Hacks to grow your list with Social Media Marketing Social media marketing enables you to attract more attention when you create and share content. Social media platforms are great places to engage

More information

The Emerging Data Lake IT Strategy

The Emerging Data Lake IT Strategy The Emerging Data Lake IT Strategy An Evolving Approach for Dealing with Big Data & Changing Environments bit.ly/datalake SPEAKERS: Thomas Kelly, Practice Director Cognizant Technology Solutions Sean Martin,

More information

Creating a Hybrid Gateway for API Traffic. Ed Julson API Platform Product Marketing TIBCO Software

Creating a Hybrid Gateway for API Traffic. Ed Julson API Platform Product Marketing TIBCO Software Creating a Hybrid Gateway for API Traffic Ed Julson API Platform Product Marketing TIBCO Software Housekeeping Webinar Recording Today s webinar is being recorded and a link to the recording will be emailed

More information

Now on Now: How ServiceNow has transformed its own GRC processes

Now on Now: How ServiceNow has transformed its own GRC processes Now on Now: How ServiceNow has transformed its own GRC processes Increasing scalability, lowering risk, and slashing costs by $30,000 START 1 Introduction When your business is growing at 0% a year, it

More information

MIND THE GOOGLE! Understanding the impact of the. Google Knowledge Graph. on your shopping center website.

MIND THE GOOGLE! Understanding the impact of the. Google Knowledge Graph. on your shopping center website. MIND THE GOOGLE! Understanding the impact of the Google Knowledge Graph on your shopping center website. John Dee, Chief Operating Officer PlaceWise Media Mind the Google! Understanding the Impact of the

More information

Hello, and welcome to another episode of. Getting the Most Out of IBM U2. This is Kenny Brunel, and

Hello, and welcome to another episode of. Getting the Most Out of IBM U2. This is Kenny Brunel, and Hello, and welcome to another episode of Getting the Most Out of IBM U2. This is Kenny Brunel, and I'm your host for today's episode which introduces wintegrate version 6.1. First of all, I've got a guest

More information

Intel (INTC) Analyst: Brian von Hein Jr. Fall Recommendation: SELL Target Price until (12/31/2015): $24.46

Intel (INTC) Analyst: Brian von Hein Jr. Fall Recommendation: SELL Target Price until (12/31/2015): $24.46 Recommendation: SELL Target Price until (12/31/2015): $24.46 1. Reasons for the Recommendation Intel has been the markets leader in microprocessors for personal computers over the last decade. The industry

More information

A Practitioner s Approach to Successfully Implementing Service Virtualization

A Practitioner s Approach to Successfully Implementing Service Virtualization A Practitioner s Approach to Successfully Implementing Service Virtualization The Final Piece of the Puzzle Gaurish Vijay Hattangadi Executive Summary Service virtualization envisions a promising solution

More information

Drawing the Big Picture

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

More information

CATCH ERRORS BEFORE THEY HAPPEN. Lessons for a mature data governance practice

CATCH ERRORS BEFORE THEY HAPPEN. Lessons for a mature data governance practice CATCH ERRORS BEFORE THEY HAPPEN Lessons for a mature data governance practice A guide to working with cross-departmental teams to establish proactive data governance for your website or mobile app. 2 Robust

More information

CE Adoption and Trends

CE Adoption and Trends By John Barrett, Director, Consumer Analytics; Barbara Kraus, Director of Research; Yilan Jiang, Manager of Consumer Research; and David Mitchel, Research Analyst, Parks Associates SYNOPSIS 360 View: CE

More information

Data Vault Brisbane User Group

Data Vault Brisbane User Group Data Vault Brisbane User Group 26-02-2013 Agenda Introductions A brief introduction to Data Vault Creating a Data Vault based Data Warehouse Comparisons with 3NF/Kimball When is it good for you? Examples

More information

Shine a Light on Dark Data with Vertica Flex Tables

Shine a Light on Dark Data with Vertica Flex Tables White Paper Analytics and Big Data Shine a Light on Dark Data with Vertica Flex Tables Hidden within the dark recesses of your enterprise lurks dark data, information that exists but is forgotten, unused,

More information

Measuring and Tracking Results: 3 Step Starter. Content Marketing. and Tracking Results: 3 Step Starter. Share this guide:

Measuring and Tracking  Results: 3 Step Starter. Content Marketing. and Tracking Results: 3 Step Starter. Share this guide: Measuring and Tracking Email Results: 3 Step Starter Content Marketing 1 Measuring and Tracking Results: 3 Step Starter Share this guide: Table of Contents Introduction 3 Step 1: Make Sense Out of the

More information

CIS 612 Advanced Topics in Database Big Data Project Lawrence Ni, Priya Patil, James Tench

CIS 612 Advanced Topics in Database Big Data Project Lawrence Ni, Priya Patil, James Tench CIS 612 Advanced Topics in Database Big Data Project Lawrence Ni, Priya Patil, James Tench Abstract Implementing a Hadoop-based system for processing big data and doing analytics is a topic which has been

More information

Data Structures and Algorithms Dr. Naveen Garg Department of Computer Science and Engineering Indian Institute of Technology, Delhi.

Data Structures and Algorithms Dr. Naveen Garg Department of Computer Science and Engineering Indian Institute of Technology, Delhi. Data Structures and Algorithms Dr. Naveen Garg Department of Computer Science and Engineering Indian Institute of Technology, Delhi Lecture 18 Tries Today we are going to be talking about another data

More information

Introduction to Access 97/2000

Introduction to Access 97/2000 Introduction to Access 97/2000 PowerPoint Presentation Notes Slide 1 Introduction to Databases (Title Slide) Slide 2 Workshop Ground Rules Slide 3 Objectives Here are our objectives for the day. By the

More information

google SEO UpdatE the RiSE Of NOt provided and hummingbird october 2013

google SEO UpdatE the RiSE Of NOt provided and hummingbird october 2013 google SEO Update The Rise of Not Provided and Hummingbird October 2013 Lead contributors David Freeman Head of SEO Havas Media UK david.freeman@havasmedia.com Winston Burton VP, Director of SEO Havas

More information

12 Key Steps to Successful Marketing

12 Key Steps to Successful  Marketing 12 Key Steps to Successful Email Marketing Contents Introduction 3 Set Objectives 4 Have a plan, but be flexible 4 Build a good database 5 Should I buy data? 5 Personalise 6 Nail your subject line 6 Use

More information

The importance of monitoring containers

The importance of monitoring containers The importance of monitoring containers The container achilles heel As the containerization market skyrockets, with DevOps and continuous delivery as its jet fuel, organizations are trading one set of

More information

Micro Focus Partner Program. For Resellers

Micro Focus Partner Program. For Resellers Micro Focus Partner Program For Resellers Contents Micro Focus Today About Micro Focus Our solutions for digital transformation Products and Solutions Program Membership Tiers Become a Portfolio Expert

More information

E(xtract) T(ransform) L(oad)

E(xtract) T(ransform) L(oad) Gunther Heinrich, Tobias Steimer E(xtract) T(ransform) L(oad) OLAP 20.06.08 Agenda 1 Introduction 2 Extract 3 Transform 4 Load 5 SSIS - Tutorial 2 1 Introduction 1.1 What is ETL? 1.2 Alternative Approach

More information

A COMPLETE GUIDE TO WEB PUSH NOTIFICATIONS

A COMPLETE GUIDE TO WEB PUSH NOTIFICATIONS [Pick the date] Table of Contents Introduction... 2 Why should you be reading this guide?... 2 What are Push Notifications?... 2 Why Push Notifications?... 3 Chapter 1: Inside out of Push Notification...

More information

Four Steps to Unleashing The Full Potential of Your Database

Four Steps to Unleashing The Full Potential of Your Database Four Steps to Unleashing The Full Potential of Your Database This insightful technical guide offers recommendations on selecting a platform that helps unleash the performance of your database. What s the

More information

The Salesforce Migration Playbook

The Salesforce Migration Playbook The Salesforce Migration Playbook By Capstorm Table of Contents Salesforce Migration Overview...1 Step 1: Extract Data Into A Staging Environment...3 Step 2: Transform Data Into the Target Salesforce Schema...5

More information

Virtual Private Networks with Cisco Network Services Orchestrator Enabled by Tail-f - Fast, Simple, and Automated

Virtual Private Networks with Cisco Network Services Orchestrator Enabled by Tail-f - Fast, Simple, and Automated Solution Overview Virtual Private Networks with Cisco Network Services Orchestrator Enabled by Tail-f - Fast, Simple, and Automated BENEFITS Accelerate new VPN services with automated, self-service, on-demand

More information

Traffic is coming! OMG moments

Traffic is coming! OMG moments CASE STUDY Traffic is coming! OMG moments How Distinct helped evomag.ro handle Blackfriday 2013 traffic spike Summary: 1. Who 2. The Challenge 3. The Work 4. Aftermath 1. Who :: Bogdan Belu - Distinct

More information