The New Disruptive Db2 Analytics Accelerator Delivering new flexible, integrated deployment options

Size: px
Start display at page:

Download "The New Disruptive Db2 Analytics Accelerator Delivering new flexible, integrated deployment options"

Transcription

1 The New Disruptive Db2 Analytics Accelerator Delivering new flexible, integrated deployment options Roberta Nobili IBM Cloud & Analytics 1

2 AGENDA Data gravity approach Db2 Analytics Accelerator V5 Today Db2 Analytics Accelerator V7 components Differences V7 to V5 2

3 Data is at the core of industry transformation and productivity Data is the world s new natural resource, transforming industries and professions Data is the new basis of industry disruption and competitive advantage Enterprises should let Data Gravity govern analytical processing 1 Analyze data where it originates to minimize cost and complexity while improving integrity Hybrid Transaction /Analytical Processing (HTAP) will foster opportunities for dramatic business innovation 2 HTAP enables simplified infrastructure and drives innovation and agility 1 Source: A commissioned study conducted by Forrester Consulting on behalf of IBM, May Source: IBM Corporation

4 IBM Z Analytics Keep your data in place a different approach to enterprise analytics Keep data in place for analytics Keep data in place, encrypted and secure Minimize latency, cost and complexity of data movement Transform data on platform Improve data quality and governance Apply the same resiliency to analytics as your operational applications Combine insight from structured & unstructured data from z and non-z data sources Leverage existing people, processes and infrastructure 4

5 The Db2 Analytics Accelerator further advances HTAP and IBM Z Transaction Processing Analytical Workload The hybrid computing platform on IBM Z Supports transaction processing and analytics workloads concurrently, efficiently and cost-effectively Delivers industry leading performance for mixed workloads The unique heterogeneous scale-out platform in the industry Superior availability, reliability and security Db2 Analytics Accelerator and Db2 for z/os A self-managing, hybrid workload-optimized database management system that runs each query workload in the most efficient way, so that each query is executed in its optimal environment for greatest performance and cost efficiency 5

6 Today Db2 Analytics Accelerator Version 5 6

7 Today Current infrastructure based on Netezza technology N1001.., N2001.., N and DB2 Analytics Accelerator for z/os V4 or V5 IT Use Case Query Acceleration In-database transformation Incremental Update True HTAP Federation In-database analytics Use historical data (HPSS) PDA N3001 today today today today today today today 7

8 What is True HTAP in V5? Db2 Analytics Accelerator So far, True HTAP with Db2 and Db2 Analytics Accelerator was limited: When a table changes on Db2 for z/os, the changes are not immediately visible to queries routed to IDAA. However, some applications require the guarantee that any change committed on Db2 will be seen by a subsequent query. The HTAP feature provides this guarantee, presenting the next step in the journey towards full query offload transparency for accelerated queries. Analytics is performed against COMMITTED data that is known to be current relative to the SQL Latency no longer impacts SQL result consistency 8

9 How does True HTAP work? Db2 Analytics Accelerator Write requests Asynchronous replication OLTP reads OLAP reads Most recent committed data required? no yes yes Most recent committed data available? no Initiate apply 9 Wait for given time period

10 How is HTAP implemented? Introducing a new ZPARM + Bind option + Special register CURRENY QUERY ACCELERATION WAITFORDATA = n.m. n.m. = (seconds) Default 0.0 = No wait WAITFORDATA = 0.0 Immediately execute in Accelerator (Current behavior) WAITFORDATA > Wait for committed changes to be applied via asynchronous replication If wait time exceeded check Delay Expiration rule If FAIL (default) check CURRENT QUERY ACCELERATION special register If WITH FAILBACK is specified, execute query in Db2 Else FAIL query with SQLCODE -904 If CONTINUE, immediately execute in Accelerator and return SQLCODE +904 i

11 Add Column support After a column has been added to a DB2 table the column can be added to the associated table on the Accelerator by executing a synchronization operation No need any more to remove the table from the Accelerator, re-add it and re-load it again For archive-enabled tables, no restore and re-archive is needed Queries can use the new column directly after the synchronization operation Supported table types: Accelerator-shadow tables PTF 5: Without Incremental Upate enabled only PTF 6: With or without Incremental Update enabled Accelerator-archive tables Db2 Analytics Accelerator Supported Schema Changes ALTER TABLE ADD COLUMN (adding a nullable column) ALTER TABLE ADD COLUMN... NOT NULL WITH DEFAULT (adding a non-nullable column with a default value) Default values are supported as long as they are explicit. Hexadecimal character strings are not supported as default value 11

12 Db2 Analytics Accelerator Add Column support Support for ALTER TABLE ADD COLUMN only Required CDC capture agent configuration ONSCHEMACHANGE=STOP ADDCOLUMNISSCHEMACHANGE=YES 12

13 Db2 Analytics Accelerator Task: Adding a new column to a replicated table ALTER TABLE EMPLOYEES ADD COLUMN MIDDLENAME VARCHAR(128); COMMIT; 1 Replication subscription will STOP with (CHC0860E event) 2 DSNX881I message will the thrown, requesting synchronization 3 Synchronization must be triggered via GUI or stored procedure call. In the GUI the synchronization dialog will pop-up automatically. 4 Subscription will be starting again 5 13

14 Db2 Analytics Accelerator Federation support Before: Data from subsystems sharing same accelerator is fully isolated Now: Grant read access to a table from another subsystem Prerequisites: Data from different DB2 systems is loaded into the same accelerator V5.1 PTF 5 and DB2 11 with APARs/PTFs PI77826/UI48595 and PI76645/ UI48595 installed SELECT DB2R. DB2O1 DB2O2. Accelerator. 14

15 Federation scenario Terminology: Owning DB2 (DB2O) DB2 that has read/write access to a table on the Accelerator. Table was added by DB2O to the Accelerator Referencing DB2 (DB2R) DB2 that references, in RO mode, a (remote) table on the Accelerator that was added by DB2O to the Accelerator DBA of DB2O grants privileges to DB2R to select from DB2O tables New Accelerator stored procedure DBA of DB2R creates references to tables for which privileges were granted from DB2O Another new Accelerator stored procedure References created as AOTs to get a proxy within DB2 catalog tables of DB2R SELECT on T1 and T2_O DB2R Table T1 AOT T2_O DB2O Table T2 User of DB2R executes a query on the Accelerator that joins tables from both DB2O and DB2R (T1 and T2_O) Uses AOT references in DB2R for DB2O tables in query 15 Accelerator 2017 IBM Corporation

16 Federation related new stored procedures Grants another DB2 for z/os subsystem (DB2R) the privilege to select from accelerator-shadow or accelerator-only tables that this subsystem (DB2O) has added to the specified accelerator (not a DB2 GRANT) ACCEL_GRANT_TABLES_REFERENCE (ACCEL1, DB2R, Set<Accelerator-table>) Creates a referencing accelerator-only table for each table listed in the specified table set that allows this DB2 for z/os subsystem (DB2R) to reference an accelerator-shadow or accelerator-only table created in another subsystem (DB2O) from a query running in this subsystem. ACCEL_CREATE_REFERENCE_TABLES (ACCEL1, DB2O, Set<Accelerator-table-of-db2o>) Revokes the privilege to select from accelerator-shadow or accelerator-only tables that this subsystem (DB2O) has added to the specified Accelerator from another DB2 for z/os subsystem (DB2R) ACCEL_REVOKE_TABLES_REFERENCE (ACCEL1, DB2R, Set<Accelerator-table>) Removes a referencing AOT on DB2R for each table that is referenced from DB2O and listed in the specified table set. Do not use SQL DROP for referencing AOTs. ACCEL_REMOVE_REFERENCE_TABLES (ACCEL1, DB2O, Set<Accelerator-table-of-db2o>) IBM Corporation

17 Federation: More technical details The SELECT privilege for the referencing AOTs is managed/checked in the referencing DB2 subsystem (DB2R) Table metadata for referencing AOTs is required in DB2R for query rewrite and eligibility analysis Creation of referencing AOTs inserts entries in SYSIBM.SYSTABLES and SYSACCEL.SYSACCELERATEDTABLES on DB2R DB2 catalog changes New pseudo-catalog table SYSACCEL.SYSACCELERATEDTABLESAUTH Contains one row for each accelerator-shadow or accelerator-only table on the owning DB2 (DB2O) for which a grant exists that allows another subsystem sharing the same accelerator to access the table New column REMOTELOCATION in SYSACCEL.SYSACCELERATEDTABLES Contains the DB2 location of the owner table being referenced by a referencing AOT on DB2R IBM Corporation

18 Db2 Analytics Accelerator Version

19 Db2 Analytics Accelerator Version 7.1 Delivering flexible, integrated deployment options High-speed analysis of your enterprise data for real-time insight under the control and security of IBM Z Introduces flexible, integrated deployment options Accelerator on IBM Z Unified homogeneity of service, support and operations Flexible Capacity Accelerator on IBM Integrated Analytics System Fast, simple deployment on pre-configured hardware and software Flexible and elastic data storage Based on IBM s premier analytical engine, Db2 Warehouse software Transition easily between deployment options One API One database engine 19

20 Db2 Analytics Accelerator Version 7.1 Deployment Options In Version 7.1, Db2 acceleration can be implemented within different operating environments: On an on-premises appliance IDAA on IIAS On a SW appliance installed on the z14 mainframe IDAA on Z Db2 Analytics Accelerator Version 7.1: Two deployment options Both new options will offer the same functionality the same API the same implementation This provides: Coexistence and combination of deployment options, fully transparent for Db2 applications Flexibility in moving data for query acceleration as workload demands grow or change Consistency and efficiency in managing different Db2 Analytics Accelerator environments 20

21 Db2 Warehouse The new acceleration engine for Db2 Analytics Accelerator Version 7.1 Advantages of the new technology for Db2 Analytics Accelerator Improved SQL compatibility Columnar technology Improved throughput and performance Faster, easier integration with other technologies and approaches 21

22 Powered by Db2 with BLU acceleration In-memory column processing with dynamic movement of data from storage Multi-core and SIMD parallelism (Single instruction Multiple Data) Patented compression technique preserves order so data can be used without decompressing Skips unnecessary processing of irrelevant data Huge potential for faster ingest for incremental updates, and thereby less HTAP query delay! IBM s premier analytics engine across many products Latest analytics technology innovations Improved SQL compatibility and performance Higher degree of concurrent users and queries The new engine is replaced internally external interfaces will stay the same. The same Db2 subsystem can be connected to the existing and new generation. 22

23 Version New Architecture Docker container Accelerator server Systems Manager IBM Analytics Engine Workload Monitoring Additional future functionality Authentication Infrastructure Management Docker Supported OS Virtual or physical server CPU Memory Storage (local, SAN, NAS) (Clustered) Filesystem 23

24 Db2 Analytics Accelerator Version 7.1, Deployment on IBM Integrated Analytics System 24

25 Db2 Analytics Accelerator for z/os Version 7.1 deployment on IBM Integrated Analytics System (IIAS) Next generation hardware appliance A full solution that provides all components out of the box including optimized hardware and software All components provided by IBM in a balanced, performance-optimized configuration HW, which includes the rack, the physical servers and the storage SW stack including the Docker host operating system as well as the Docker container and the infrastructure management IBM Power hardware for the appliance, balanced and optimized for price/performance 25

26 IBM Db2 Analytics Accelerator on IBM Integrated Analytics System Product components CLIENT IBM Z IBM Integrated Analytics System Data Studio with Db2 Analytics Accelerator Studio Plug-in OSA- Express 10 GbE P a t h c h OSA- Express 10 GbE Dedicated highly available network connection P a n e l Users/ Applications Data Warehouse application Db2 for z/os enabled for IBM Db2 Analytics Accelerator 26

27 Db2 Analytics Accelerator IBM Integrated Analytics System Designed for speed Powered by RedHat Linux on Power Optimized for analytics with 4X threads per core, 4X memory bandwidth and 6X more cache at lower latency compared to x86 ALL Flash Storage Hardware accelerated architecture enabling faster insights with extreme performance, % reliability and operational efficiency Designed for Massively Parallel Performance Memory Optimized In-memory Db2 Warehouse columnar processing with dynamic movement of data from storage Data Skipping Skips unnecessary processing of irrelevant data Actionable Compression Patented compression technique that preserves order allowing data to be used without decompressing first 27

28 IBM Integrated Analytics System Configurations IBM Power 8 S822L 24 core server 3.02GHz, IBM FlashSystem 900 Mellanox 10G Ethernet switches M /3 Rack M /3 Rack M Full Rack Servers Cores Memory 1.5 TB 2.5 TB 3.5 TB User capacity (Assumes 4x compression) 64 TB 128 TB 192 TB 28

29 Rack Configuration 1/3 Rack 2/3 Rack Full Rack Modular design: adding 2 compute nodes and 1 storage node to scale up 29

30 Db2 Analytics Accelerator Version 7.1, deployment on IBM Z 30

31 Db2 Analytics Accelerator for z/os Version 7.1 deployment on IBM Z 31 A software appliance running on IBM Z Packages the SW stack into an IBM Secure Service Container to deliver a fully self-managed appliance running in a SSC LPAR that can be deployed in minutes Integrates seamlessly into the customer s IBM Z environment and leverages known LPAR-, memory and CPU management procedures, including call home support for enterprise hardware components. Uses customer-provided storage to hold the Accelerator-side data Scales smoothly with the assignment of available processor cores, initially addressing sizes comparable up to 1/2 rack PDA (N ) appliances

32 IBM Db2 Analytics Accelerator on IBM Z Product components Appliance UI IBM z14 DB2 code including Stored Procedures Db2 Analytics Accelerator Studio Plug-In for Data Studio Accelerator Appliance 32

33 Topology One Db2 subsystem can connect to multiple Accelerators LPAR LPAR LPAR One Accelerator can connect to multiple Db2 subsystems One Accelerator can use IFLs of up to one Drawer The set of IFLs in one Drawer can be split to be used by multiple Accelerators (dedicated - no virtual sharing ) Drawer (~35 IFLs) Drawer (~35 IFLs) 33

34 Key Characteristics of the deployment options Db2 Analytics Accelerator on Pure Data for Analytics N3001 (Netezza Technology) Db2 Analytics Accelerator on Integrated Analytics System M4001 Db2 Analytics Accelerator on IBM Z Key advantages Out-of-the-box experience Workload Optimized System Wide set of Analytics use cases Proven technology with client references cross-industry Out-of-the-box experience Workload Optimized System Optimized for True HTAP Evolving set of Analytics use cases Download & Go experience Homogeneity within IBM Z: common resources, operation Evolving set of Analytics use cases Workload Size Very good scale-out Very good scale-out Optimized for very large query throughput and load performance Good scale-up to full drawer 34

35 Differences V5 to V7 35

36 Data Types: Comparing Accelerator V7 with existing V5 Technology Data Type support Accelerator V7 (on IIAS or Z) Accelerator V5 (on PDA) EBCDIC MBCS, GRAPHIC Supported natively Converted to UTF 8 TIMESTAMP(12) Supported natively Truncated to precision 6 FOR BIT DATA subtype Supported natively for EBCDIC, UNICODE, ASCII Supported for EBCDIC only DECFLOAT On the Roadmap Not supported BINARY On the Roadmap Not supported V5: V7: 36

37 SQL Coverage: Comparing Accelerator V7 with existing V5 Technology SQL support Accelerator V7 (on IIAS or Z) Accelerator V5 (on PDA) correlated subqueries All types supported including table expressions with Only a small subset supported sideway references Recursive SQL Supported Not supported TIMESTAMP value 24:00:00 Supported natively Mapped to 23:59: Scalar functions Improved support Some not supported when using specific datatypes, e.g. MIN/MAX, DAY, LAST_DAY, BIT*, TIMESTAMP_ISO, VARIANCE/STDDEV/ with UNIQUE clause, HEX() function Supported Not supported Mixed Encodings CURRENT_TIME, CURRENT_TIMESTAMP, CURRENT_DATE Adding EBCDIC tables when UNICODE tables already added is supported (SQL joins with data in Unicode and EBCDIC not possible) Supported with improved accuracy (no longer dependent on time synchronization) Only supported to add UNICODE tables after EBCDIC table has already been added (required to set AQT_ENABLE_MULTIPLE_ENCODINGS environment variable) Supported Local Date Exit format Not supported Supported 37

38 Loading data with Db2 Analytics Accelerator V5 ACCEL_LOAD_TABLES stored procedure Tables are loaded sequentially Tables can be loaded in parallel through separate invocation of stored procedure Partitions are loaded in parallel Max number of partitions loaded in parallel determined by AQT_MAX_UNLOAD_IN_PARALLEL environment variable (AQTENV) AQT_MAX_UNLOAD_IN_PARALLEL applies to each partititioned table in a stored procedure call If two ACCEL_LOAD_TABLES stored procedures are called in parallel each loading a partitioned table then each stored procedure call opens at max as many load streams as specified in AQT_MAX_UNLOAD_IN_PARALLEL Disadvantage Load streams might not be used efficiently if multiple tables (partitioned or non-partitioned) are loaded via one ACCEL_LOAD_TABLES stored procedure call Accelerator might get overloaded by load requests if multiple ACCEL_LOAD_TABLE stored procedures are executed in parallel 38

39 Example Load in V5 AQT_MAX_UNLOAD_IN_PARALLEL = 6 One ACCEL_LOAD_TABLES call with two partitioned tables. Table T1_4G, has four partitions T2_5G contains two partitions with 1 and 4 GB Not all streams are used Gaps in streams because partitions are not equal in size, but tables are loaded sequentially 39

40 Loading data with Db2 Analytics Accelerator V7 Smart Load Data is loaded or refreshed using ACCEL_LOAD_TABLES stored procedure Non-partitioned tables and table partitions are loaded in parallel Max number of tables and partitions loaded in parallel determined by AQT_MAX_UNLOAD_IN_PARALLEL environment variable AQT_MAX_UNLOAD_IN_PARALLEL applies to each stored procedure call, global max governed internally The Accelerator checks the number of all load requests coming in parallel (from one subsystem or multiple connected subsystems) and dependent on resource consumption of the load requests, the percentage of the resource consumption per subsystem and the max number of parallel load streams per subsystem will be adjusted Advantages All tables or partitions of tables specfied in one ACCEL_LOAD_TABLES call are efficiently loaded in parallel Reduces the need for customers to manage load streams efficiently by calling ACCEL_LOAD_TABLES in parallel Ensures that the Accelerator manages the resources used for loading data proactively to prevent resource bottlenecks and overloading 40

41 Example Smart Load in V7 AQT_MAX_UNLOAD_IN_PARALLEL = 6 One ACCEL_LOAD_TABLES call with two partitioned tables. Table T1_4G, has four partitions T2_5G contains two partitions with 1 and 4 GB All streams are used No gaps in streams Stream Load management optimized by the Accelerator and therefore minimized load elapsed time User does not need to manage load streams manually by multiple parallel ACCEL_LOAD_TABLES calls Table Duration in seconds 41 T1_4G T2_5G

42 Incremental Update with V5 INSERT/UPDATE/DELETE statements captured from DB2 log data after commit and replicated to the Accelerator On Accelerator data applied in mini-batches to leverage bulk load interface Replication engine applies all committed changes that arrived during a 60s window (or if minimum size reached) Defaults: Minimum latency around one minute Mini-batches are applied table by table (serial) If an error occurs for one replicated table replication stops for all tables If a replication enabled table is loaded/reloaded: Table is removed from subscription during the load. Replication for other tables continues with short breaks when the loaded table is removed/added from subscription Table is locked on Db2 to prevent changes while the load is running 42

43 Incremental Update v7 vs. v5 Accelerator V7 Accelerator V5 Availability Yes, since Q Yes, since V3 Default apply interval Targeting 20s or lower 60s Mode Eligible tables Default: Continuous Replication, Parallel Apply, Suspend faulty tables Only tables with enforced uniqueness (primary key, unique index) Default: Normal Replication Configurable: Continuous Replication, Parallel Apply, Suspend fault tables All tables, even when row uniqueness is not enforced Performance for scenarios with many changed tables or a defined informational constraint (via ACCEL_ADD_TABLES) Targeting > 1600 changed tables / min 1 rack Mako: 200 changed tables /min 43

44 44

IBM Db2 Analytics Accelerator Version 7.1

IBM Db2 Analytics Accelerator Version 7.1 IBM Db2 Analytics Accelerator Version 7.1 Delivering new flexible, integrated deployment options Overview Ute Baumbach (bmb@de.ibm.com) 1 IBM Z Analytics Keep your data in place a different approach to

More information

Db2 Analytics Accelerator V5.1 What s new in PTF 5

Db2 Analytics Accelerator V5.1 What s new in PTF 5 Ute Baumbach, Christopher Watson IBM Boeblingen Laboratory Db2 Analytics Accelerator V5.1 What s new in PTF 5 Legal Disclaimer IBM Corporation 2017. All Rights Reserved. The information contained in this

More information

IBM DB2 Analytics Accelerator Trends and Directions

IBM DB2 Analytics Accelerator Trends and Directions March, 2017 IBM DB2 Analytics Accelerator Trends and Directions DB2 Analytics Accelerator for z/os on Cloud Namik Hrle IBM Fellow Peter Bendel IBM STSM Disclaimer IBM s statements regarding its plans,

More information

IBM DB2 Analytics Accelerator

IBM DB2 Analytics Accelerator June, 2017 IBM DB2 Analytics Accelerator DB2 Analytics Accelerator for z/os on Cloud for z/os Update Peter Bendel IBM STSM Disclaimer IBM s statements regarding its plans, directions, and intent are subject

More information

IDAA v4.1 PTF 5 - Update The Fillmore Group June 2015 A Premier IBM Business Partner

IDAA v4.1 PTF 5 - Update The Fillmore Group June 2015 A Premier IBM Business Partner IDAA v4.1 PTF 5 - Update The Fillmore Group June 2015 A Premier IBM Business Partner History The Fillmore Group, Inc. Founded in the US in Maryland, 1987 IBM Business Partner since 1989 Delivering IBM

More information

What s new in Db2 Analytics Accelerator V7.1.2 and V7.1.3

What s new in Db2 Analytics Accelerator V7.1.2 and V7.1.3 What s new in Db2 Analytics Accelerator V7.1.2 and V7.1.3 Ute Baumbach (bmb@de.ibm.com) September 2018 IBM Db2 Analytics Accelerator Version 7.1 Continuous delivery fixes and new features every other month

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

Was ist dran an einer spezialisierten Data Warehousing platform?

Was ist dran an einer spezialisierten Data Warehousing platform? Was ist dran an einer spezialisierten Data Warehousing platform? Hermann Bär Oracle USA Redwood Shores, CA Schlüsselworte Data warehousing, Exadata, specialized hardware proprietary hardware Introduction

More information

IBM Db2 Analytics Accelerator for z/os Version User's Guide IBM SH

IBM Db2 Analytics Accelerator for z/os Version User's Guide IBM SH IBM Db2 Analytics Accelerator for z/os Version 7.1.3 User's Guide IBM SH12-7082-03 Note Before you use this information and the product it supports, read the information in Notices on page 161. Fourth

More information

Mellanox InfiniBand Solutions Accelerate Oracle s Data Center and Cloud Solutions

Mellanox InfiniBand Solutions Accelerate Oracle s Data Center and Cloud Solutions Mellanox InfiniBand Solutions Accelerate Oracle s Data Center and Cloud Solutions Providing Superior Server and Storage Performance, Efficiency and Return on Investment As Announced and Demonstrated at

More information

IBM Db2 Analytics Accelerator The Fillmore Group July 2018 A Premier IBM Business Partner

IBM Db2 Analytics Accelerator The Fillmore Group July 2018 A Premier IBM Business Partner IBM Db2 Analytics Accelerator The Fillmore Group July 2018 A Premier IBM Business Partner Agenda Day 1: Introductions The Fillmore Group IDAA Overview/Orientation Use cases How it works What s new in IDAA

More information

2011 IBM Research Strategic Initiative: Workload Optimized Systems

2011 IBM Research Strategic Initiative: Workload Optimized Systems PIs: Michael Hind, Yuqing Gao Execs: Brent Hailpern, Toshio Nakatani, Kevin Nowka 2011 IBM Research Strategic Initiative: Workload Optimized Systems Yuqing Gao IBM Research 2011 IBM Corporation Motivation

More information

Rickard Linck Client Technical Professional Core Database and Lifecycle Management Common Analytic Engine Cloud Data Servers On-Premise Data Servers

Rickard Linck Client Technical Professional Core Database and Lifecycle Management Common Analytic Engine Cloud Data Servers On-Premise Data Servers Rickard Linck Client Technical Professional Core Database and Lifecycle Management Common Analytic Engine Cloud Data Servers On-Premise Data Servers Watson Data Platform Reference Architecture Business

More information

DB2 for z/os Enterprise Summit

DB2 for z/os Enterprise Summit DB2 for z/os Enterprise Summit IBM DB2 Analytics Accelerator Details and Use Cases Sheryl M. Larsen World Wide DB2 for z/os Evangelist IBM Information Management, SWG smlarsen@us.ibm.com Goals for Today

More information

Oracle Autonomous Database

Oracle Autonomous Database Oracle Autonomous Database Maria Colgan Master Product Manager Oracle Database Development August 2018 @SQLMaria #thinkautonomous Safe Harbor Statement The following is intended to outline our general

More information

Do data science faster. IBM Cloud

Do data science faster. IBM Cloud Do data science faster 1 Essential elements of a hybrid data management strategy Access your data All sources and all types Democratize access Provide data-driven decisions to everyone Flexibility Support

More information

Oracle Exadata: Strategy and Roadmap

Oracle Exadata: Strategy and Roadmap Oracle Exadata: Strategy and Roadmap - New Technologies, Cloud, and On-Premises Juan Loaiza Senior Vice President, Database Systems Technologies, Oracle Safe Harbor Statement The following is intended

More information

Hedvig as backup target for Veeam

Hedvig as backup target for Veeam Hedvig as backup target for Veeam Solution Whitepaper Version 1.0 April 2018 Table of contents Executive overview... 3 Introduction... 3 Solution components... 4 Hedvig... 4 Hedvig Virtual Disk (vdisk)...

More information

ACCELERATE YOUR ANALYTICS GAME WITH ORACLE SOLUTIONS ON PURE STORAGE

ACCELERATE YOUR ANALYTICS GAME WITH ORACLE SOLUTIONS ON PURE STORAGE ACCELERATE YOUR ANALYTICS GAME WITH ORACLE SOLUTIONS ON PURE STORAGE An innovative storage solution from Pure Storage can help you get the most business value from all of your data THE SINGLE MOST IMPORTANT

More information

VEXATA FOR ORACLE. Digital Business Demands Performance and Scale. Solution Brief

VEXATA FOR ORACLE. Digital Business Demands Performance and Scale. Solution Brief Digital Business Demands Performance and Scale As enterprises shift to online and softwaredriven business models, Oracle infrastructure is being pushed to run at exponentially higher scale and performance.

More information

FlashGrid Software Enables Converged and Hyper-Converged Appliances for Oracle* RAC

FlashGrid Software Enables Converged and Hyper-Converged Appliances for Oracle* RAC white paper FlashGrid Software Intel SSD DC P3700/P3600/P3500 Topic: Hyper-converged Database/Storage FlashGrid Software Enables Converged and Hyper-Converged Appliances for Oracle* RAC Abstract FlashGrid

More information

IBM DB2 Analytics Accelerator: Real-Life Use Cases

IBM DB2 Analytics Accelerator: Real-Life Use Cases Patric Becker IBM BoeblingenLaboratory IBM DB2 Analytics Accelerator: Real-Life Use Cases Legal Disclaimer IBM Corporation 2016. All Rights Reserved. The information contained in this publication is provided

More information

Database Management Systems

Database Management Systems Database Management Systems Trends and Directions Namik Hrle IBM Fellow CTO Private Cloud and z Analytics March 2017 Please note: IBM s statements regarding its plans, directions, and intent are subject

More information

Oracle Exadata Statement of Direction NOVEMBER 2017

Oracle Exadata Statement of Direction NOVEMBER 2017 Oracle Exadata Statement of Direction NOVEMBER 2017 Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Oracle Database 18c and Autonomous Database

Oracle Database 18c and Autonomous Database Oracle Database 18c and Autonomous Database Maria Colgan Oracle Database Product Management March 2018 @SQLMaria Safe Harbor Statement The following is intended to outline our general product direction.

More information

IBM Data Retrieval Technologies: RDBMS, BLU, IBM Netezza, and Hadoop

IBM Data Retrieval Technologies: RDBMS, BLU, IBM Netezza, and Hadoop #IDUG IBM Data Retrieval Technologies: RDBMS, BLU, IBM Netezza, and Hadoop Frank C. Fillmore, Jr. The Fillmore Group, Inc. The Baltimore/Washington DB2 Users Group December 11, 2014 Agenda The Fillmore

More information

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

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

More information

Implementing SQL Server 2016 with Microsoft Storage Spaces Direct on Dell EMC PowerEdge R730xd

Implementing SQL Server 2016 with Microsoft Storage Spaces Direct on Dell EMC PowerEdge R730xd Implementing SQL Server 2016 with Microsoft Storage Spaces Direct on Dell EMC PowerEdge R730xd Performance Study Dell EMC Engineering October 2017 A Dell EMC Performance Study Revisions Date October 2017

More information

#techsummitch

#techsummitch www.thomasmaurer.ch #techsummitch Justin Incarnato Justin Incarnato Microsoft Principal PM - Azure Stack Hyper-scale Hybrid Power of Azure in your datacenter Azure Stack Enterprise-proven On-premises

More information

OFA Developer Workshop 2014

OFA Developer Workshop 2014 OFA Developer Workshop 2014 Shared Memory Communications over RDMA (SMC-R): Update Jerry Stevens IBM sjerry@us.ibm.com Trademarks, copyrights and disclaimers IBM, the IBM logo, and ibm.com are trademarks

More information

Oracle Database Exadata Cloud Service Exadata Performance, Cloud Simplicity DATABASE CLOUD SERVICE

Oracle Database Exadata Cloud Service Exadata Performance, Cloud Simplicity DATABASE CLOUD SERVICE Oracle Database Exadata Exadata Performance, Cloud Simplicity DATABASE CLOUD SERVICE Oracle Database Exadata combines the best database with the best cloud platform. Exadata is the culmination of more

More information

Evolving To The Big Data Warehouse

Evolving To The Big Data Warehouse Evolving To The Big Data Warehouse Kevin Lancaster 1 Copyright Director, 2012, Oracle and/or its Engineered affiliates. All rights Insert Systems, Information Protection Policy Oracle Classification from

More information

Optimized Data Integration for the MSO Market

Optimized Data Integration for the MSO Market Optimized Data Integration for the MSO Market Actions at the speed of data For Real-time Decisioning and Big Data Problems VelociData for FinTech and the Enterprise VelociData s technology has been providing

More information

Analytics on z Systems, what s new?

Analytics on z Systems, what s new? Khadija Souissi Analytics on z Systems, what s new? IBM Architektentage 16.11.2016 Agenda Spark on z Systems What is Spark Spark Details The ecosystem for Spark on z/os Use Cases New Dimension for the

More information

Accelerate Applications Using EqualLogic Arrays with directcache

Accelerate Applications Using EqualLogic Arrays with directcache Accelerate Applications Using EqualLogic Arrays with directcache Abstract This paper demonstrates how combining Fusion iomemory products with directcache software in host servers significantly improves

More information

Saving ETL Costs Through Data Virtualization Across The Enterprise

Saving ETL Costs Through Data Virtualization Across The Enterprise Saving ETL Costs Through Virtualization Across The Enterprise IBM Virtualization Manager for z/os Marcos Caurim z Analytics Technical Sales Specialist 2017 IBM Corporation What is Wrong with Status Quo?

More information

Optimizing Data Transformation with Db2 for z/os and Db2 Analytics Accelerator

Optimizing Data Transformation with Db2 for z/os and Db2 Analytics Accelerator Optimizing Data Transformation with Db2 for z/os and Db2 Analytics Accelerator Maryela Weihrauch, IBM Distinguished Engineer, WW Analytics on System z March, 2017 Please note IBM s statements regarding

More information

Copyright 2012 EMC Corporation. All rights reserved.

Copyright 2012 EMC Corporation. All rights reserved. 1 TRANSFORMING MICROSOFT APPLICATIONS TO THE CLOUD Louaye Rachidi Technology Consultant 2 22x Partner Of Year 19+ Gold And Silver Microsoft Competencies 2,700+ Consultants Worldwide Cooperative Support

More information

IBM Data Replication for Big Data

IBM Data Replication for Big Data IBM Data Replication for Big Data Highlights Stream changes in realtime in Hadoop or Kafka data lakes or hubs Provide agility to data in data warehouses and data lakes Achieve minimum impact on source

More information

High performance and functionality

High performance and functionality IBM Storwize V7000F High-performance, highly functional, cost-effective all-flash storage Highlights Deploys all-flash performance with market-leading functionality Helps lower storage costs with data

More information

IBM POWER SYSTEMS: YOUR UNFAIR ADVANTAGE

IBM POWER SYSTEMS: YOUR UNFAIR ADVANTAGE IBM POWER SYSTEMS: YOUR UNFAIR ADVANTAGE Choosing IT infrastructure is a crucial decision, and the right choice will position your organization for success. IBM Power Systems provides an innovative platform

More information

IBM DB2 Analytics Accelerator High Availability and Disaster Recovery

IBM DB2 Analytics Accelerator High Availability and Disaster Recovery Redpaper Patric Becker Frank Neumann IBM Analytics Accelerator High Availability and Disaster Recovery Introduction With the introduction of IBM Analytics Accelerator, IBM enhanced for z/os capabilities

More information

Accelerate with IBM Storage: IBM FlashSystem A9000/A9000R and Hyper-Scale Manager (HSM) 5.1 update

Accelerate with IBM Storage: IBM FlashSystem A9000/A9000R and Hyper-Scale Manager (HSM) 5.1 update Accelerate with IBM Storage: IBM FlashSystem A9000/A9000R and Hyper-Scale Manager (HSM) 5.1 update Lisa Martinez Brian Sherman Steve Solewin IBM Hyper-Scale Manager Copyright IBM Corporation 2016. Session

More information

IBM Power Systems: Open innovation to put data to work Dexter Henderson Vice President IBM Power Systems

IBM Power Systems: Open innovation to put data to work Dexter Henderson Vice President IBM Power Systems IBM Power Systems: Open innovation to put data to work Dexter Henderson Vice President IBM Power Systems 2014 IBM Corporation Powerful Forces are Changing the Way Business Gets Done Data growing exponentially

More information

Oracle Big Data Connectors

Oracle Big Data Connectors Oracle Big Data Connectors Oracle Big Data Connectors is a software suite that integrates processing in Apache Hadoop distributions with operations in Oracle Database. It enables the use of Hadoop to process

More information

Agenda. AWS Database Services Traditional vs AWS Data services model Amazon RDS Redshift DynamoDB ElastiCache

Agenda. AWS Database Services Traditional vs AWS Data services model Amazon RDS Redshift DynamoDB ElastiCache Databases on AWS 2017 Amazon Web Services, Inc. and its affiliates. All rights served. May not be copied, modified, or distributed in whole or in part without the express consent of Amazon Web Services,

More information

Load Dynamix Enterprise 5.2

Load Dynamix Enterprise 5.2 DATASHEET Load Dynamix Enterprise 5.2 Storage performance analytics for comprehensive workload insight Load DynamiX Enterprise software is the industry s only automated workload acquisition, workload analysis,

More information

Top Trends in DBMS & DW

Top Trends in DBMS & DW Oracle Top Trends in DBMS & DW Noel Yuhanna Principal Analyst Forrester Research Trend #1: Proliferation of data Data doubles every 18-24 months for critical Apps, for some its every 6 months Terabyte

More information

Business Analytics in System z: The IBM DB2 Analytics Accelerator Carlos Guardia

Business Analytics in System z: The IBM DB2 Analytics Accelerator Carlos Guardia Business Analytics in System z: The IBM DB2 Analytics Accelerator Carlos Guardia zim Lead Architect IBM Software Group Business challenges and technology trends Change in business requirements BI/DW is

More information

Scalable Analytics: IBM System z Approach

Scalable Analytics: IBM System z Approach Namik Hrle IBM Distinguished Engineer hrle@de.ibm.com Scalable Analytics: IBM System z Approach Symposium on Scalable Analytics - Industry meets Academia FGDB 2012 FG Datenbanksysteme der Gesellschaft

More information

Recent Innovations in Data Storage Technologies Dr Roger MacNicol Software Architect

Recent Innovations in Data Storage Technologies Dr Roger MacNicol Software Architect Recent Innovations in Data Storage Technologies Dr Roger MacNicol Software Architect Copyright 2017, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement The following is intended to

More information

Perform scalable data exchange using InfoSphere DataStage DB2 Connector

Perform scalable data exchange using InfoSphere DataStage DB2 Connector Perform scalable data exchange using InfoSphere DataStage Angelia Song (azsong@us.ibm.com) Technical Consultant IBM 13 August 2015 Brian Caufield (bcaufiel@us.ibm.com) Software Architect IBM Fan Ding (fding@us.ibm.com)

More information

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material,

More information

Synergetics-Standard-SQL Server 2012-DBA-7 day Contents

Synergetics-Standard-SQL Server 2012-DBA-7 day Contents Workshop Name Duration Objective Participants Entry Profile Training Methodology Setup Requirements Hardware and Software Requirements Training Lab Requirements Synergetics-Standard-SQL Server 2012-DBA-7

More information

SUPERMICRO, VEXATA AND INTEL ENABLING NEW LEVELS PERFORMANCE AND EFFICIENCY FOR REAL-TIME DATA ANALYTICS FOR SQL DATA WAREHOUSE DEPLOYMENTS

SUPERMICRO, VEXATA AND INTEL ENABLING NEW LEVELS PERFORMANCE AND EFFICIENCY FOR REAL-TIME DATA ANALYTICS FOR SQL DATA WAREHOUSE DEPLOYMENTS TABLE OF CONTENTS 2 THE AGE OF INFORMATION ACCELERATION Vexata Provides the Missing Piece in The Information Acceleration Puzzle The Vexata - Supermicro Partnership 4 CREATING ULTRA HIGH-PERFORMANCE DATA

More information

VOLTDB + HP VERTICA. page

VOLTDB + HP VERTICA. page VOLTDB + HP VERTICA ARCHITECTURE FOR FAST AND BIG DATA ARCHITECTURE FOR FAST + BIG DATA FAST DATA Fast Serve Analytics BIG DATA BI Reporting Fast Operational Database Streaming Analytics Columnar Analytics

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: RSM Scalability Element/Component: Real Storage Manager Material current as of May 2015 IBM Presentation Template Full Version Agenda Trademarks Presentation

More information

Approaching the Petabyte Analytic Database: What I learned

Approaching the Petabyte Analytic Database: What I learned Disclaimer This document is for informational purposes only and is subject to change at any time without notice. The information in this document is proprietary to Actian and no part of this document may

More information

Security and Performance advances with Oracle Big Data SQL

Security and Performance advances with Oracle Big Data SQL Security and Performance advances with Oracle Big Data SQL Jean-Pierre Dijcks Oracle Redwood Shores, CA, USA Key Words SQL, Oracle, Database, Analytics, Object Store, Files, Big Data, Big Data SQL, Hadoop,

More information

CAST(HASHBYTES('SHA2_256',(dbo.MULTI_HASH_FNC( tblname', schemaname'))) AS VARBINARY(32));

CAST(HASHBYTES('SHA2_256',(dbo.MULTI_HASH_FNC( tblname', schemaname'))) AS VARBINARY(32)); >Near Real Time Processing >Raphael Klebanov, Customer Experience at WhereScape USA >Definitions 1. Real-time Business Intelligence is the process of delivering business intelligence (BI) or information

More information

powered by Cloudian and Veritas

powered by Cloudian and Veritas Lenovo Storage DX8200C powered by Cloudian and Veritas On-site data protection for Amazon S3-compliant cloud storage. assistance from Lenovo s world-class support organization, which is rated #1 for overall

More information

Oracle 1Z0-515 Exam Questions & Answers

Oracle 1Z0-515 Exam Questions & Answers Oracle 1Z0-515 Exam Questions & Answers Number: 1Z0-515 Passing Score: 800 Time Limit: 120 min File Version: 38.7 http://www.gratisexam.com/ Oracle 1Z0-515 Exam Questions & Answers Exam Name: Data Warehousing

More information

On-Premises Cloud Platform. Bringing the public cloud, on-premises

On-Premises Cloud Platform. Bringing the public cloud, on-premises On-Premises Cloud Platform Bringing the public cloud, on-premises How Cloudistics came to be 2 Cloudistics On-Premises Cloud Platform Complete Cloud Platform Simple Management Application Specific Flexibility

More information

IBM Spectrum Protect Version Introduction to Data Protection Solutions IBM

IBM Spectrum Protect Version Introduction to Data Protection Solutions IBM IBM Spectrum Protect Version 8.1.2 Introduction to Data Protection Solutions IBM IBM Spectrum Protect Version 8.1.2 Introduction to Data Protection Solutions IBM Note: Before you use this information

More information

Verron Martina vspecialist. Copyright 2012 EMC Corporation. All rights reserved.

Verron Martina vspecialist. Copyright 2012 EMC Corporation. All rights reserved. Verron Martina vspecialist 1 TRANSFORMING MISSION CRITICAL APPLICATIONS 2 Application Environments Historically Physical Infrastructure Limits Application Value Challenges Different Environments Limits

More information

In-Memory Data Management Jens Krueger

In-Memory Data Management Jens Krueger In-Memory Data Management Jens Krueger Enterprise Platform and Integration Concepts Hasso Plattner Intitute OLTP vs. OLAP 2 Online Transaction Processing (OLTP) Organized in rows Online Analytical Processing

More information

Oracle Database Mobile Server, Version 12.2

Oracle Database Mobile Server, Version 12.2 O R A C L E D A T A S H E E T Oracle Database Mobile Server, Version 12.2 Oracle Database Mobile Server 12c (ODMS) is a highly optimized, robust and secure way to connect mobile and embedded Internet of

More information

DB2 Analytics Accelerator Loader for z/os

DB2 Analytics Accelerator Loader for z/os Information Management for System z DB2 Analytics Accelerator Loader for z/os Agenda Challenges of loading to the Analytics Accelerator DB2 Analytics Accelerator for z/os Overview Managing the Accelerator

More information

IBM Tivoli Storage Manager Version Introduction to Data Protection Solutions IBM

IBM Tivoli Storage Manager Version Introduction to Data Protection Solutions IBM IBM Tivoli Storage Manager Version 7.1.6 Introduction to Data Protection Solutions IBM IBM Tivoli Storage Manager Version 7.1.6 Introduction to Data Protection Solutions IBM Note: Before you use this

More information

Oracle Streams. An Oracle White Paper October 2002

Oracle Streams. An Oracle White Paper October 2002 Oracle Streams An Oracle White Paper October 2002 Oracle Streams Executive Overview... 3 Introduction... 3 Oracle Streams Overview... 4... 5 Staging... 5 Propagation... 6 Transformations... 6 Consumption...

More information

Postgres Plus and JBoss

Postgres Plus and JBoss Postgres Plus and JBoss A New Division of Labor for New Enterprise Applications An EnterpriseDB White Paper for DBAs, Application Developers, and Enterprise Architects October 2008 Postgres Plus and JBoss:

More information

Oktober 2018 Dell Tech. Forum München

Oktober 2018 Dell Tech. Forum München Oktober 2018 Dell Tech. Forum München Virtustream Digital Transformation & SAP Jan Büsen Client Solutions Executive, Virtustream The Business Agenda: Digital IT = Competitive Advantage Business Driven

More information

Understanding the latent value in all content

Understanding the latent value in all content Understanding the latent value in all content John F. Kennedy (JFK) November 22, 1963 INGEST ENRICH EXPLORE Cognitive skills Data in any format, any Azure store Search Annotations Data Cloud Intelligence

More information

Accelerating Digital Transformation with InterSystems IRIS and vsan

Accelerating Digital Transformation with InterSystems IRIS and vsan HCI2501BU Accelerating Digital Transformation with InterSystems IRIS and vsan Murray Oldfield, InterSystems Andreas Dieckow, InterSystems Christian Rauber, VMware #vmworld #HCI2501BU Disclaimer This presentation

More information

VMware vsphere Clusters in Security Zones

VMware vsphere Clusters in Security Zones SOLUTION OVERVIEW VMware vsan VMware vsphere Clusters in Security Zones A security zone, also referred to as a DMZ," is a sub-network that is designed to provide tightly controlled connectivity to an organization

More information

Optimize OLAP & Business Analytics Performance with Oracle 12c In-Memory Database Option

Optimize OLAP & Business Analytics Performance with Oracle 12c In-Memory Database Option Optimize OLAP & Business Analytics Performance with Oracle 12c In-Memory Database Option Session ID: 1571 Prepared by: Kai Yu Senior Principal Engineer Dell Oracle Solutions Engineering Dell, Inc. @ky_austin1

More information

State of the Dolphin Developing new Apps in MySQL 8

State of the Dolphin Developing new Apps in MySQL 8 State of the Dolphin Developing new Apps in MySQL 8 Highlights of MySQL 8.0 technology updates Mark Swarbrick MySQL Principle Presales Consultant Jill Anolik MySQL Global Business Unit Israel Copyright

More information

Oracle Exadata X7. Uwe Kirchhoff Oracle ACS - Delivery Senior Principal Service Delivery Engineer

Oracle Exadata X7. Uwe Kirchhoff Oracle ACS - Delivery Senior Principal Service Delivery Engineer Oracle Exadata X7 Uwe Kirchhoff Oracle ACS - Delivery Senior Principal Service Delivery Engineer 05.12.2017 Oracle Engineered Systems ZFS Backup Appliance Zero Data Loss Recovery Appliance Exadata Database

More information

Storage Optimization with Oracle Database 11g

Storage Optimization with Oracle Database 11g Storage Optimization with Oracle Database 11g Terabytes of Data Reduce Storage Costs by Factor of 10x Data Growth Continues to Outpace Budget Growth Rate of Database Growth 1000 800 600 400 200 1998 2000

More information

Developing Microsoft Azure Solutions (70-532) Syllabus

Developing Microsoft Azure Solutions (70-532) Syllabus Developing Microsoft Azure Solutions (70-532) Syllabus Cloud Computing Introduction What is Cloud Computing Cloud Characteristics Cloud Computing Service Models Deployment Models in Cloud Computing Advantages

More information

Dell EMC Data Protection Everywhere

Dell EMC Data Protection Everywhere Dell EMC Data Protection Everywhere For the modern data center GLOBAL SPONSORS Journey to digital transformation Are you protected? 2 Enabling simplicity - data protection everywhere Where you need it

More information

TECHNICAL OVERVIEW OF NEW AND IMPROVED FEATURES OF EMC ISILON ONEFS 7.1.1

TECHNICAL OVERVIEW OF NEW AND IMPROVED FEATURES OF EMC ISILON ONEFS 7.1.1 TECHNICAL OVERVIEW OF NEW AND IMPROVED FEATURES OF EMC ISILON ONEFS 7.1.1 ABSTRACT This introductory white paper provides a technical overview of the new and improved enterprise grade features introduced

More information

Functional Testing of SQL Server on Kaminario K2 Storage

Functional Testing of SQL Server on Kaminario K2 Storage Functional Testing of SQL Server on Kaminario K2 Storage September 2016 TABLE OF CONTENTS 2 3 4 11 12 14 Executive Summary Introduction to Kaminario K2 Functionality Tests for SQL Server Summary Appendix:

More information

VMware vcloud Air User's Guide

VMware vcloud Air User's Guide vcloud Air This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this document,

More information

Experience the GRID Today with Oracle9i RAC

Experience the GRID Today with Oracle9i RAC 1 Experience the GRID Today with Oracle9i RAC Shig Hiura Pre-Sales Engineer Shig_Hiura@etagon.com 2 Agenda Introduction What is the Grid The Database Grid Oracle9i RAC Technology 10g vs. 9iR2 Comparison

More information

5 Fundamental Strategies for Building a Data-centered Data Center

5 Fundamental Strategies for Building a Data-centered Data Center 5 Fundamental Strategies for Building a Data-centered Data Center June 3, 2014 Ken Krupa, Chief Field Architect Gary Vidal, Solutions Specialist Last generation Reference Data Unstructured OLTP Warehouse

More information

Hewlett Packard Enterprise HPE GEN10 PERSISTENT MEMORY PERFORMANCE THROUGH PERSISTENCE

Hewlett Packard Enterprise HPE GEN10 PERSISTENT MEMORY PERFORMANCE THROUGH PERSISTENCE Hewlett Packard Enterprise HPE GEN10 PERSISTENT MEMORY PERFORMANCE THROUGH PERSISTENCE Digital transformation is taking place in businesses of all sizes Big Data and Analytics Mobility Internet of Things

More information

SAP IQ - Business Intelligence and vertical data processing with 8 GB RAM or less

SAP IQ - Business Intelligence and vertical data processing with 8 GB RAM or less SAP IQ - Business Intelligence and vertical data processing with 8 GB RAM or less Dipl.- Inform. Volker Stöffler Volker.Stoeffler@DB-TecKnowledgy.info Public Agenda Introduction: What is SAP IQ - in a

More information

Azure Webinar. Resilient Solutions March Sander van den Hoven Principal Technical Evangelist Microsoft

Azure Webinar. Resilient Solutions March Sander van den Hoven Principal Technical Evangelist Microsoft Azure Webinar Resilient Solutions March 2017 Sander van den Hoven Principal Technical Evangelist Microsoft DX @svandenhoven 1 What is resilience? Client Client API FrontEnd Client Client Client Loadbalancer

More information

vsan Security Zone Deployment First Published On: Last Updated On:

vsan Security Zone Deployment First Published On: Last Updated On: First Published On: 06-14-2017 Last Updated On: 11-20-2017 1 1. vsan Security Zone Deployment 1.1.Solution Overview Table of Contents 2 1. vsan Security Zone Deployment 3 1.1 Solution Overview VMware vsphere

More information

5/24/ MVP SQL Server: Architecture since 2010 MCT since 2001 Consultant and trainer since 1992

5/24/ MVP SQL Server: Architecture since 2010 MCT since 2001 Consultant and trainer since 1992 2014-05-20 MVP SQL Server: Architecture since 2010 MCT since 2001 Consultant and trainer since 1992 @SoQooL http://blog.mssqlserver.se Mattias.Lind@Sogeti.se 1 The evolution of the Microsoft data platform

More information

Looking ahead with IBM i. 10+ year roadmap

Looking ahead with IBM i. 10+ year roadmap Looking ahead with IBM i 10+ year roadmap 1 Enterprises Trust IBM Power 80 of Fortune 100 have IBM Power Systems The top 10 banking firms have IBM Power Systems 9 of top 10 insurance companies have IBM

More information

SQL Server 2014 Training. Prepared By: Qasim Nadeem

SQL Server 2014 Training. Prepared By: Qasim Nadeem SQL Server 2014 Training Prepared By: Qasim Nadeem SQL Server 2014 Module: 1 Architecture &Internals of SQL Server Engine Module : 2 Installing, Upgrading, Configuration, Managing Services and Migration

More information

FAST SQL SERVER BACKUP AND RESTORE

FAST SQL SERVER BACKUP AND RESTORE WHITE PAPER FAST SQL SERVER BACKUP AND RESTORE WITH PURE STORAGE TABLE OF CONTENTS EXECUTIVE OVERVIEW... 3 GOALS AND OBJECTIVES... 3 AUDIENCE... 3 PURE STORAGE INTRODUCTION... 4 SOLUTION SUMMARY... 4 FLASHBLADE

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

EMC XTREMCACHE ACCELERATES VIRTUALIZED ORACLE

EMC XTREMCACHE ACCELERATES VIRTUALIZED ORACLE White Paper EMC XTREMCACHE ACCELERATES VIRTUALIZED ORACLE EMC XtremSF, EMC XtremCache, EMC Symmetrix VMAX and Symmetrix VMAX 10K, XtremSF and XtremCache dramatically improve Oracle performance Symmetrix

More information

Microsoft Azure Stack Hybrid Cloud. The Modern System Architecture

Microsoft Azure Stack Hybrid Cloud. The Modern System Architecture Microsoft & itnetx 2017 Microsoft Azure Stack Hybrid Cloud. The Modern System Architecture Uwe Lüthy PTS at Microsoft www.microsoft.com Thomas Maurer Solution Architect at itnetx Microsoft MVP / P-TSP

More information

Enterprise Architectures The Pace Accelerates Camberley Bates Managing Partner & Analyst

Enterprise Architectures The Pace Accelerates Camberley Bates Managing Partner & Analyst Enterprise Architectures The Pace Accelerates Camberley Bates Managing Partner & Analyst Change is constant in IT.But some changes alter forever the way we do things Inflections & Architectures Solid State

More information

Nutanix Tech Note. Virtualizing Microsoft Applications on Web-Scale Infrastructure

Nutanix Tech Note. Virtualizing Microsoft Applications on Web-Scale Infrastructure Nutanix Tech Note Virtualizing Microsoft Applications on Web-Scale Infrastructure The increase in virtualization of critical applications has brought significant attention to compute and storage infrastructure.

More information

EMC XTREMCACHE ACCELERATES MICROSOFT SQL SERVER

EMC XTREMCACHE ACCELERATES MICROSOFT SQL SERVER White Paper EMC XTREMCACHE ACCELERATES MICROSOFT SQL SERVER EMC XtremSF, EMC XtremCache, EMC VNX, Microsoft SQL Server 2008 XtremCache dramatically improves SQL performance VNX protects data EMC Solutions

More information