An Oracle White Paper April 2010

Size: px
Start display at page:

Download "An Oracle White Paper April 2010"

Transcription

1 An Oracle White Paper April 2010

2 In October 2009, NEC Corporation ( NEC ) established development guidelines and a roadmap for IT platform products to realize a next-generation IT infrastructures suited for cloud computing, announcing an IT platform vision called REAL IT PLATFORM Generation 2. The goal of the REAL IT PLATFORM Generation 2 vision is to provide flexible, dependable, and easy-to-use systems to customers based on NEC s virtualization, high reliability, integration, and usability technologies. Oracle Corporation Japan ( Oracle Japan ) began providing Oracle GRID technology for realizing grid computing several years before the announcement of Oracle Database 10g. In November 2006, Oracle Japan established the Oracle GRID Center, a facility designed for technical verifications performed in partnership with affiliated vendors, to create next-generation grid-based business solutions. Based on the collaborative relationship extending over some 20 years, NEC and Oracle Japan have promoted a strategic technology alliance (STA) to develop and realize next-generation IT infrastructures. As part of this effort, NEC joined the Oracle GRID Center to give concrete shape to the REAL IT PLATFORM Generation 2 vision. Oracle GRID Center conducted pre-release validation program for Oracle Database 11g Release 2 with cooperative partners. There are two purposes of this program. These are improvement of product quality through validation testing, including feedback to development departments, and enablement of the new features at the time of the product release for effective user scenarios. This paper is one of the work products of this program with NEC.

3

4 Overview The environment that businesses must adapt to is changing more rapidly than ever before, and decisionmakers are required to make business decisions and improvements to their business quickly. In order to make these rapid business decisions, decision-makers use Data Warehouses (DWH) to view historical data and perform predictive analysis. To make rapid decisions, the DWH must provide data quickly to end users. To deliver that performance Oracle Database has been providing parallel execution for faster SQL execution, which utilizes storage and CPU resources efficiently. Recently, the need for storage I/O performance has grown due to the increase of data caused by the complex and global business environments. On the other hand, because of the increased capacity that a single disk can hold, it has become a trend to design storage systems based on the data size which results in a relatively small amount of physical disks. As a result, the marginal performance of the storage systems results in a possible bottleneck for the entire DWH system. In-Memory Parallel Query (PQ) was implemented as a way to solve that bottleneck in Oracle Database 11g Release 2 by caching data on physical memory while performing parallel statements. This paper introduces a solution that improves the performance of the entire DWH system by effectively using the In-Memory PQ on a NEC Express5800/Scalable HA server. This particular server has a large memory capacity making it suitable for a system leveraging In-Memory PQ. In-Memory Parallel Query Conventional PQ execution uses Direct Path Read, which loads data directly from the disks and bypassing the database buffer cache (buffer cache). Although reading data from memory has smaller latency, it has been virtually impossible to cache large amounts of data into the buffer cache because of the cost of high-volume memory modules and hardware limitations. Assuming that conventional parallel execution did load data into the buffer cache, the data will be cached out one after another due to the limited buffer cache size, and the overhead to manage the cached data will decrease the SQL response time. Hence, the conventional parallel execution performed by the Oracle Database was adopted to load data directly from the disks. However, the latest servers can now host sufficient amounts of physical memory. For example, the NEC Express5800/Scalable HA server has memory capacity up to 1024G (256GB 4BOX). Such a server can hold a large amount of data in the buffer cache, and therefore can fully utilize the In-Memory PQ capabilities. 3

5 In-Memory PQ is a parallel query feature that uses database segments (such as tables, indexes) cached in the buffer cache to execute a query, therefore eliminating the performance limitation set by the storage. In case the target data is not cached, response time is slightly slower than with Direct Path Read because there there is a need to warm up the cache (e.g. load data into the cache). If PQ deals with more data than about 80% of buffer cache size, it automatically detects this when generating the SQL execution plan and uses Direct Path Read instead of the buffer cache (Figure 2). 4

6 To use In-Memory PQ, the initialization parameter PARALLEL_DEGREE_POLICY must be set to "AUTO" (default: MANUAL). Change in the application is not required. In addition, the combination of In-Memory PQ with Oracle Partitioning and/or Table Compression is very effective as we will explain in more detail. Oracle Partitioning Oracle Partitioning is a feature that divides tables and indexes into multiple parts (Partition). Users can access partitioned tables as a normal table, and no change in the application is necessary. Tables and indexes can be divided using different methods such as range (divide by key range), hash (divide by hash key), list (divided by key value) and composite partitions which is a combination of two partitioning methods. Table 1 shows selectable composite partitions and Oracle Database Version. 5

7 MAIN Table 1 selectable composite partition SUB RANGE LIST HASH RANGE 11gR1 9iR2 8i LIST 11gR1 11gR1 11gR1 Partitioning provides three benefits; performance, manageability and availability. This paper explains the performance benefit when using partition pruning which is especially effective for DWH queries. Partition pruning improves query performance by only accessing partitions that include the desired data. For example, consider a case where a query requests sales data for a specific month (2009/10) from the SALES table. If the SALES table is a non-partitioned table, the query scans the entire table. However, if the SALES table is partitioned, the query scans only one partition (2009/10) because all its data is located in this single partition. There is no need to scan the irrelevant partitions, resulting in an increased performance (Figure 3). 6

8 The combined use of Oracle Partitioning and In-Memory PQ is very effective. When using partitioned tables, there is a greater tendency for the data to be cached in the buffer cache because partition pruning reduces the actual data size to be used. There is no need to scan the irrelevant partitions increasing the chances that the data fits within 80% of the buffer cache (Figure 4). Table Compression Table Compression is a feature that reduces the table size by eliminates duplicate data within an Oracle Database Block (block) which allows more rows to be stored within a single block. This function is especially effective to reduce response time in DWH systems because it reduces the disk I/O required to retrieve a given number of rows. Moreover, the data cached in the buffer cache remains compressed, allowing more data to be stored within the buffer cache resulting in an expansion of the applicable query range for In-Memory PQ (Figure 5). 7

9 Platform Introduction NEC's A1160 system architecture features an efficiently scalable, highly reliable, and easily serviceable solution perfect for system consolidation, virtualization deployments, and enterprise database applications. Each A1160 system can scale from 1-node, 4-sockets, 24-cores, and 256GB memory, to 4-nodes, 16-sockets, 96-cores, and 1TB memory. 8

10 Verification Environment Oracle Database 11g Release 2 was installed on an Express5800/A1160 with a database created on an istorage D3 storage connected by 4 4Gbps fibre channel cables (FC). The database has 1TB of data. : ( ) : ( ) ( ) : 9

11 Verification Model Generally, there are two types of users of a DWH; general users and executives. The verification was done under the hypothesis that general users such as sales representatives mainly access recent data to resolve the problems they face, and executives tend to access data across several years to make mid-and-long term business plans. The trends of queries that are executed by each type of users are as follows. The queries that general users execute is executed by many users and executed with high frequency. On the other hand, the queries that executives execute is executed by a few users and executed with low frequency (Figure 7, Table 2). ( ) These users execute queries concurrently in a DWH system, and in conventional servers with a small memory footprint, each parallel query request is executed by Direct Path Read because the server is unable to cache large data set. In this case, the performance of the PQ is often limited by Storage I/O bandwidth due to the workload concentrating on the storage (Figure 8). 10

12 Verification was done to overcome this situation by using large memory server (NEC Express5800/Scalable HA server) and In-Memory PQ (New Function of Oracle Database 11g Release 2). 11

13 Verification 1: Comparison between conventional PQ and In-Memory PQ Although more than one user execute a different query in real DWH systems, as mentioned in the previous chapter (Verification Model), this chapter uses a simple case where 1 user executes the same query, and compared it between conventional PQ and In-Memory PQ. Conventional PQ is set by disabling In-Memory PQ setting (PARALLEL_DEGREE_POLICY=MANUAL). In addition, this chapter also explains how the Oracle Database decides whether to use Direct Path Read or not when executing a PQ which requires a large size of data. The verification was performed as follows. 1. Prepare a range-partitioned table (Each partition has data for 1 month, data size is 2.5GB per partition) 2. Compare the performance of same query with In-Memory PQ enabled and disabled. 3. Expand the data size of the query by adding more months to be covered in the query (changing where clause of the SQL). 4. Return to step 2 and run the test again The verification environment is as follows. ) 12

14 Figure 10 is the result of this verification, showing the relative response time. The response time of a query that uses Direct Path Read when data size of query range 15GB is assigned a value of 100 and acts as the baseline in the tests. This baseline is used in verification 1 and 2. If the data size of a query range is less than about 80% of buffer cache size, an In-Memory PQ is executed and the tests here show that the execution is faster than not using In-Memory PQ. If the data size is larger than about 80% of buffer cache size, the query is executed using Direct Path Read and we see the traditional PQ execution times. 13

15 Next, in order to confirm the performance and H/W resource usage difference between In-Memory PQ and Direct Path Read, we focus on the baseline data size of 15GB. This baseline data size is a little less than about 80% of buffer cache. Figure 11 is comparison response time between Direct Path Read and In-Memory PQ. In this verification, In-Memory PQ is five times faster than Direct Path Read. As for In-Memory PQ, it is supposed that all target data is cached in the buffer cache in advance, and the result above is obtained after loading all data into buffer cache. Executing this query before the target data is loaded into the buffer cache will result in a slower response time than Direct Path Read. Figure 12 is the Disk I/O time-series graph of In-Memory PQ and Direct Path Read. This figure shows the relative Disk I/O speed (Read) where the value of 100 is set to the maximum Disk I/O (Read) speed examined in advance. When Direct Path Read is used, the storage resource used almost neared its capacity ceiling. When In- Memory PQ is executed, storage resource usage is very low as expected. 14

16 Figure 13 is the CPU usage rate time-series graph of Direct Path Read and In-Memory PQ When Direct Path Read is used, CPU usage rate peakes at about 10 %. In this case, the CPU resource is not used very effectively. This under utilization is caused by CPU waits, which means CPU is waiting for I/O supply from the storage. While In-Memory PQ is executed, CPU usage is driven to almost 100%, showing the effective use of CPU resources. The above results show that In-Memory PQ is faster than Direct Path Read PQ because of the effective use of CPU resources and low use of storage resource. The next verification shows the case where the data size of query range is larger than about 80% of buffer cache size. Figure 14 is the comparison response time between In-Memory PQ disabled and enabled; where data size of query range is about 20GB (80% of buffer cache size is 19.6GB). In this case, although In-Memory PQ is enabled, Direct Path Read is executed, resulting in a nearly equeal response time in both cases. 15

17 Following data are the Top 5 event of In-Memory PQ is disabled and enabled. In both cases, more than 90% of time is used by Direct Path Read event, confirming that Direct Path Read is executed even though In-Memory PQ is enabled. As described above, when In-Memory PQ is enabled and the data size is smaller than about 80% of the buffer cache size, the PQ is executed using the buffer cache effectively, while in cases where the data size of query range is larger than about 80%, Direct Path Read is used. From the above results, in our DWH model, the short term queries which are executed by general users are sped up from In-Memory PQ, while long term queries executed by executives are executed using Direct Path Read. Enabling In-Memory PQ therefore speeds up the shorter running, repetitive queries, without interfering in any way with the longer running, strategic queries. 16

18 Verification 2: Expand applicable query range for In-Memory PQ As might be expected from the result of Verification 1, even when In-Memory PQ is enabled, if the data size becomes larger than 80% of the buffer cache size, In-Memory PQ will not be applied. There are 2 solutions for such situation. One is to expand the buffer cache size by adding physical memory, and the other is to reduce the data size. In Verification 2-1, a feature of NEC Express5800/A1160, Addition BOX was used to expand the buffer cache size. In Verification 2-2, Table Compression of the Oracle Database was used to reduce the data size. This section verifies how to expand the applicable query range for In-Memory PQ by using the feature of NEC s Express5800/A1160, Addition BOX. This allows users to add resources to the server. By adding an additional BOX, physical memory size is increased which enables the setting of the buffer cache to a larger size. The same verification was conducted as in Verification 1, but now by using a 2BOX configuration., The results were then compared to the ones obtained in Verification 1 (1BOX). This verification environment is as follows. : : : : ) 17

19 Figure 15 shows the comparison of the applicable query range of In-Memory PQ between 1BOX and 2BOX. With 1BOX, the boundary line between In-Memory PQ and Direct Path Read is about 20GB, while the line moved to about 40GB in case of 2BOX. The results confirm that expanding the applicable query range of In-Memory PQ is possible using the feature of NEC Express5800/A1160, Addition BOX. It is also confirmed that expanding the buffer cache delivers an increase of query performance for a larger set of queries. This section verifies how to expand the applicable query range of In-Memory PQ by using Oracle Database Table Compression. Table Compression allows more data to be cached, because the buffer cache caches the data in compressed form. Furthermore, the performance of the query is improved not only for In-Memory PQ but for Direct Path Read as well due to the data size reduction by compressing that data. The same verification was conducted as in Verification 1 but with a table compression ratio of 2.1.Again,the results were then compared against the results using a table that is not compressed. 18

20 This verification environment is as follows. : : Figure 16 shows the response time between a compressed table and no compressed table. Figure 16 confirms that compressing the table results in an expansion to the applicable query range from about 40GB to about 85GB (about 80% of the buffer cache size (41.1GB) * Compress Rate (2.1)). This means that more data has been cached due to compression. If the data size is more than about 85GB, although the query is executed using Direct Path Read, the compressed case is about 2 times faster than the case where no compression is done. This is the effect of decreasing the disk I/O by leveraging Table Compression. As described above, using Table Compression expands the applicable query range for an In-Memory PQ for queries executed by general users, allowing increases in the DWH data size. Furthermore, queries which are executed by executives also gain in performance due to the use of compression. Using In-Memory PQ and compression creates a win-win situation for all query users across a broad spectrum of data sizes. 19

21 Verification 3: Performance Improvement across the system by using In-Memory PQ By executing In-Memory PQ instead of Direct Path Read (conventional way), short term queries executed by general user population are faster, because the data is small enough to be in the buffer cache and because this data is used repeatedly. Furthermore, it is expected to reduce Disk I/O. On the other hand, the queries executed by executives generally query large long term data sets and tend to be executed by Direct Path Read. However, the queries executed by executive users can make full use of storage I/O, part of which was used by general users before, resulting in better performance across the board (Figure 17). In other words, using In-Memory PQ drives better performance for the entire query ecosystem, not just for the direct beneficiaries of In-Memory PQ. 20

22 This chapter introduces performance improvement of entire Data Warehouse system by using In-Memory PQ. The verification environment model is as follows. General users use 9 sessions and executives use 1 session, accounting for a total of 10 sessions on the system. All general users execute queries on data for the latest month, and executive execute queries against the latest full year of data. Every session executes queries continuously, and the 10 sessions are always executed concurrently. The average response time for each type of users were measured after a given period of time from executing queries concurrently. The verification environment is as follows. : : : : : : ( ) ( ) 21

23 Figure 19 shows the comparison for each user s average response time for both cases where In-Memory PQ was enabled and disabled. If In-Memory PQ is enabled, the queries that are executed by the general users were some 5 times faster than with In-Memory PQ disabled and the queries executed by executives were some 9 times faster. 22

24 For reference, the CPU usage rate (usr+sys) is shown below for both In-Memory PQ enabled and disabled (Figure 20). When In-Memory PQ is disabled, all queries are executed by using Direct Path Read and the CPU usage rate is low (peaking at about 10%). This shows the disk I/O performance bottleneck. On the other hand, when In-Memory PQ is enabled, the data used by the general users is supplied from physical memory whereas the data used by executives is supplied via I/O from the storage subsystem. In this case, the CPU can continue to process the data supplied from physical memory while waiting for the data from storage. Because of this, CPU usage rate is kept at a fairly high rate. This means the DWH system can use HW resources much more effectively by leveraging In-Memory PQ and all users benefit from the feature. 23

25 This verification confirms the improved performance of the entire DWH system by using In-Memory PQ. In a general DWH system, the disk I/O tends to be performance bottleneck, but by using In-Memory PQ, the queries executed by In-Memory PQ instead of Direct Path Read execute much faster than the limitation caused by the storage I/O capacity. Furthermore, even queries which cannot be executed using In-Memory PQ see an improved performance, because these queries get the benefit of using the extra I/O bandwidth that is released by queries that use In-Memory PQ instead of Direct Path Read. In addition, this verification introduces two ways to expand the applicable query range of In-Memory PQ. One is the Addition BOX functionality of the NEC Express5800/Scalable HA server, which allows expanding the physical memory by adding server resources. The other way is by using Table Compression, which reduces the data size. In the latter case, the advantage is not only the expanded applicable query range for In-Memory PQ, but also the improved performance for queries that are executed using Direct Path Read. To summarize, the combination of NEC Express5800/Scalable HA server and the new feature of Oracle Database 11g Release 2, In-Memory Parallel Query, offers a more than suitable solution for any DWH requiring high performance and concurrent and mixed use query loads. 24

26

Effective resource utilization by In-Memory Parallel Execution in Oracle Real Application Clusters 11g Release 2

Effective resource utilization by In-Memory Parallel Execution in Oracle Real Application Clusters 11g Release 2 An Oracle White Paper Feb 2010 Effective resource utilization by In-Memory Parallel Execution in Oracle Real Application Clusters 11g Release 2 Server Hardware Sponsored by Copyright 2010 NS Solutions

More information

Increasing Performance of Existing Oracle RAC up to 10X

Increasing Performance of Existing Oracle RAC up to 10X Increasing Performance of Existing Oracle RAC up to 10X Prasad Pammidimukkala www.gridironsystems.com 1 The Problem Data can be both Big and Fast Processing large datasets creates high bandwidth demand

More information

Validating the NetApp Virtual Storage Tier in the Oracle Database Environment to Achieve Next-Generation Converged Infrastructures

Validating the NetApp Virtual Storage Tier in the Oracle Database Environment to Achieve Next-Generation Converged Infrastructures Technical Report Validating the NetApp Virtual Storage Tier in the Oracle Database Environment to Achieve Next-Generation Converged Infrastructures Tomohiro Iwamoto, Supported by Field Center of Innovation,

More information

Table Compression in Oracle9i Release2. An Oracle White Paper May 2002

Table Compression in Oracle9i Release2. An Oracle White Paper May 2002 Table Compression in Oracle9i Release2 An Oracle White Paper May 2002 Table Compression in Oracle9i Release2 Executive Overview...3 Introduction...3 How It works...3 What can be compressed...4 Cost and

More information

Accelerating Microsoft SQL Server 2016 Performance With Dell EMC PowerEdge R740

Accelerating Microsoft SQL Server 2016 Performance With Dell EMC PowerEdge R740 Accelerating Microsoft SQL Server 2016 Performance With Dell EMC PowerEdge R740 A performance study of 14 th generation Dell EMC PowerEdge servers for Microsoft SQL Server Dell EMC Engineering September

More information

Deploy a High-Performance Database Solution: Cisco UCS B420 M4 Blade Server with Fusion iomemory PX600 Using Oracle Database 12c

Deploy a High-Performance Database Solution: Cisco UCS B420 M4 Blade Server with Fusion iomemory PX600 Using Oracle Database 12c White Paper Deploy a High-Performance Database Solution: Cisco UCS B420 M4 Blade Server with Fusion iomemory PX600 Using Oracle Database 12c What You Will Learn This document demonstrates the benefits

More information

Automatic Parallel Execution Presented by Joel Goodman Oracle University EMEA

Automatic Parallel Execution Presented by Joel Goodman Oracle University EMEA Automatic Parallel Execution Presented by Joel Goodman Oracle University EMEA Copyright 2011, Oracle. All rights reserved. Topics Automatic Parallelism Parallel Statement Queuing In Memory Parallel Query

More information

An Oracle White Paper February Optimizing Storage for Oracle PeopleSoft Applications

An Oracle White Paper February Optimizing Storage for Oracle PeopleSoft Applications An Oracle White Paper February 2011 Optimizing Storage for Oracle PeopleSoft Applications Executive Overview Enterprises are experiencing an explosion in the volume of data required to effectively run

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

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

Best Practices. Deploying Optim Performance Manager in large scale environments. IBM Optim Performance Manager Extended Edition V4.1.0.

Best Practices. Deploying Optim Performance Manager in large scale environments. IBM Optim Performance Manager Extended Edition V4.1.0. IBM Optim Performance Manager Extended Edition V4.1.0.1 Best Practices Deploying Optim Performance Manager in large scale environments Ute Baumbach (bmb@de.ibm.com) Optim Performance Manager Development

More information

Automating Information Lifecycle Management with

Automating Information Lifecycle Management with Automating Information Lifecycle Management with Oracle Database 2c The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

QLogic/Lenovo 16Gb Gen 5 Fibre Channel for Database and Business Analytics

QLogic/Lenovo 16Gb Gen 5 Fibre Channel for Database and Business Analytics QLogic/ Gen 5 Fibre Channel for Database Assessment for Database and Business Analytics Using the information from databases and business analytics helps business-line managers to understand their customer

More information

NEC Express5800 A2040b 22TB Data Warehouse Fast Track. Reference Architecture with SW mirrored HGST FlashMAX III

NEC Express5800 A2040b 22TB Data Warehouse Fast Track. Reference Architecture with SW mirrored HGST FlashMAX III NEC Express5800 A2040b 22TB Data Warehouse Fast Track Reference Architecture with SW mirrored HGST FlashMAX III Based on Microsoft SQL Server 2014 Data Warehouse Fast Track (DWFT) Reference Architecture

More information

Copyright 2013, Oracle and/or its affiliates. All rights reserved.

Copyright 2013, Oracle and/or its affiliates. All rights reserved. 2 Copyright 23, Oracle and/or its affiliates. All rights reserved. Oracle Database 2c Heat Map, Automatic Data Optimization & In-Database Archiving Platform Technology Solutions Oracle Database Server

More information

QLogic 16Gb Gen 5 Fibre Channel for Database and Business Analytics

QLogic 16Gb Gen 5 Fibre Channel for Database and Business Analytics QLogic 16Gb Gen 5 Fibre Channel for Database Assessment for Database and Business Analytics Using the information from databases and business analytics helps business-line managers to understand their

More information

Abstract. The Challenges. ESG Lab Review InterSystems IRIS Data Platform: A Unified, Efficient Data Platform for Fast Business Insight

Abstract. The Challenges. ESG Lab Review InterSystems IRIS Data Platform: A Unified, Efficient Data Platform for Fast Business Insight ESG Lab Review InterSystems Data Platform: A Unified, Efficient Data Platform for Fast Business Insight Date: April 218 Author: Kerry Dolan, Senior IT Validation Analyst Abstract Enterprise Strategy Group

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

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

Top 5 Reasons to Consider

Top 5 Reasons to Consider Top 5 Reasons to Consider NVM Express over Fabrics For Your Cloud Data Center White Paper Top 5 Reasons to Consider NVM Express over Fabrics For Your Cloud Data Center Major transformations are occurring

More information

HP ProLiant BladeSystem Gen9 vs Gen8 and G7 Server Blades on Data Warehouse Workloads

HP ProLiant BladeSystem Gen9 vs Gen8 and G7 Server Blades on Data Warehouse Workloads HP ProLiant BladeSystem Gen9 vs Gen8 and G7 Server Blades on Data Warehouse Workloads Gen9 server blades give more performance per dollar for your investment. Executive Summary Information Technology (IT)

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

An Oracle White Paper September Oracle Utilities Meter Data Management Demonstrates Extreme Performance on Oracle Exadata/Exalogic

An Oracle White Paper September Oracle Utilities Meter Data Management Demonstrates Extreme Performance on Oracle Exadata/Exalogic An Oracle White Paper September 2011 Oracle Utilities Meter Data Management 2.0.1 Demonstrates Extreme Performance on Oracle Exadata/Exalogic Introduction New utilities technologies are bringing with them

More information

ECE 7650 Scalable and Secure Internet Services and Architecture ---- A Systems Perspective

ECE 7650 Scalable and Secure Internet Services and Architecture ---- A Systems Perspective ECE 7650 Scalable and Secure Internet Services and Architecture ---- A Systems Perspective Part II: Data Center Software Architecture: Topic 3: Programming Models RCFile: A Fast and Space-efficient Data

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

Exadata Implementation Strategy

Exadata Implementation Strategy BY UMAIR MANSOOB Who Am I Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist since 2011 Oracle Database Performance Tuning Certified Expert Oracle Business Intelligence

More information

Condusiv s V-locity Server Boosts Performance of SQL Server 2012 by 55%

Condusiv s V-locity Server Boosts Performance of SQL Server 2012 by 55% openbench Labs Executive Briefing: May 20, 2013 Condusiv s V-locity Server Boosts Performance of SQL Server 2012 by 55% Optimizing I/O for Increased Throughput and Reduced Latency on Physical Servers 01

More information

Lenovo Database Configuration

Lenovo Database Configuration Lenovo Database Configuration for Microsoft SQL Server OLTP on Flex System with DS6200 Reduce time to value with pretested hardware configurations - 20TB Database and 3 Million TPM OLTP problem and a solution

More information

White Paper. Major Performance Tuning Considerations for Weblogic Server

White Paper. Major Performance Tuning Considerations for Weblogic Server White Paper Major Performance Tuning Considerations for Weblogic Server Table of Contents Introduction and Background Information... 2 Understanding the Performance Objectives... 3 Measuring your Performance

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

PRESERVE DATABASE PERFORMANCE WHEN RUNNING MIXED WORKLOADS

PRESERVE DATABASE PERFORMANCE WHEN RUNNING MIXED WORKLOADS PRESERVE DATABASE PERFORMANCE WHEN RUNNING MIXED WORKLOADS Testing shows that a Pure Storage FlashArray//m storage array used for Microsoft SQL Server 2016 helps eliminate latency and preserve productivity.

More information

White Paper Features and Benefits of Fujitsu All-Flash Arrays for Virtualization and Consolidation ETERNUS AF S2 series

White Paper Features and Benefits of Fujitsu All-Flash Arrays for Virtualization and Consolidation ETERNUS AF S2 series White Paper Features and Benefits of Fujitsu All-Flash Arrays for Virtualization and Consolidation Fujitsu All-Flash Arrays are extremely effective tools when virtualization is used for server consolidation.

More information

HANA Performance. Efficient Speed and Scale-out for Real-time BI

HANA Performance. Efficient Speed and Scale-out for Real-time BI HANA Performance Efficient Speed and Scale-out for Real-time BI 1 HANA Performance: Efficient Speed and Scale-out for Real-time BI Introduction SAP HANA enables organizations to optimize their business

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

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. reserved. Insert Information Protection Policy Classification from Slide 8

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. reserved. Insert Information Protection Policy Classification from Slide 8 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

PSAM, NEC PCIe SSD Appliance for Microsoft SQL Server (Reference Architecture) September 4 th, 2014 NEC Corporation

PSAM, NEC PCIe SSD Appliance for Microsoft SQL Server (Reference Architecture) September 4 th, 2014 NEC Corporation PSAM, NEC PCIe SSD Appliance for Microsoft SQL Server (Reference Architecture) September 4 th, 2014 NEC Corporation 1. Overview of NEC PCIe SSD Appliance for Microsoft SQL Server Page 2 NEC Corporation

More information

SAS workload performance improvements with IBM XIV Storage System Gen3

SAS workload performance improvements with IBM XIV Storage System Gen3 SAS workload performance improvements with IBM XIV Storage System Gen3 Including performance comparison with XIV second-generation model Narayana Pattipati IBM Systems and Technology Group ISV Enablement

More information

The Arrival of Affordable In-Memory Database Management Systems

The Arrival of Affordable In-Memory Database Management Systems Research Report The Arrival of Affordable In-Memory Database Management Systems Executive Summary The enterprise computing marketplace is about to enter a new era of computing: the era of affordable in-memory

More information

Reduce Costs & Increase Oracle Database OLTP Workload Service Levels:

Reduce Costs & Increase Oracle Database OLTP Workload Service Levels: Reduce Costs & Increase Oracle Database OLTP Workload Service Levels: PowerEdge 2950 Consolidation to PowerEdge 11th Generation A Dell Technical White Paper Dell Database Solutions Engineering Balamurugan

More information

Oracle Performance on M5000 with F20 Flash Cache. Benchmark Report September 2011

Oracle Performance on M5000 with F20 Flash Cache. Benchmark Report September 2011 Oracle Performance on M5000 with F20 Flash Cache Benchmark Report September 2011 Contents 1 About Benchware 2 Flash Cache Technology 3 Storage Performance Tests 4 Conclusion copyright 2011 by benchware.ch

More information

Session 1079: Using Real Application Testing to Successfully Migrate to Exadata - Best Practices and Customer Case Studies

Session 1079: Using Real Application Testing to Successfully Migrate to Exadata - Best Practices and Customer Case Studies Session 1079: Using Real Application Testing to Successfully Migrate to Exadata - Best Practices and Customer Case Studies Prabhaker Gongloor (GP) Product Management Director, Database Manageability, Oracle

More information

Using Synology SSD Technology to Enhance System Performance Synology Inc.

Using Synology SSD Technology to Enhance System Performance Synology Inc. Using Synology SSD Technology to Enhance System Performance Synology Inc. Synology_WP_ 20121112 Table of Contents Chapter 1: Enterprise Challenges and SSD Cache as Solution Enterprise Challenges... 3 SSD

More information

Considering the 2.5-inch SSD-based RAID Solution:

Considering the 2.5-inch SSD-based RAID Solution: Considering the 2.5-inch SSD-based RAID Solution: Using Infortrend EonStor B12 Series with Intel SSD in a Microsoft SQL Server Environment Application Note Abstract This application note discusses the

More information

Hitachi Converged Platform for Oracle

Hitachi Converged Platform for Oracle Hitachi Converged Platform for Oracle Manfred Drozd, Benchware Ltd. Sponsored by Hitachi Data Systems Corporation Introduction Because of their obvious advantages, engineered platforms are becoming increasingly

More information

Four-Socket Server Consolidation Using SQL Server 2008

Four-Socket Server Consolidation Using SQL Server 2008 Four-Socket Server Consolidation Using SQL Server 28 A Dell Technical White Paper Authors Raghunatha M Leena Basanthi K Executive Summary Businesses of all sizes often face challenges with legacy hardware

More information

Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Copyright 2018, Oracle and/or its affiliates. All rights reserved. Oracle Database In- Memory Implementation Best Practices and Deep Dive [TRN4014] Andy Rivenes Database In-Memory Product Management Oracle Corporation Safe Harbor Statement The following is intended to

More information

Exadata Implementation Strategy

Exadata Implementation Strategy Exadata Implementation Strategy BY UMAIR MANSOOB 1 Who Am I Work as Senior Principle Engineer for an Oracle Partner Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist

More information

Exadata X3 in action: Measuring Smart Scan efficiency with AWR. Franck Pachot Senior Consultant

Exadata X3 in action: Measuring Smart Scan efficiency with AWR. Franck Pachot Senior Consultant Exadata X3 in action: Measuring Smart Scan efficiency with AWR Franck Pachot Senior Consultant 16 March 2013 1 Exadata X3 in action: Measuring Smart Scan efficiency with AWR Exadata comes with new statistics

More information

Oracle Database 11g Direct NFS Client Oracle Open World - November 2007

Oracle Database 11g Direct NFS Client Oracle Open World - November 2007 Oracle Database 11g Client Oracle Open World - November 2007 Bill Hodak Sr. Product Manager Oracle Corporation Kevin Closson Performance Architect Oracle Corporation Introduction

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

PowerVault MD3 SSD Cache Overview

PowerVault MD3 SSD Cache Overview PowerVault MD3 SSD Cache Overview A Dell Technical White Paper Dell Storage Engineering October 2015 A Dell Technical White Paper TECHNICAL INACCURACIES. THE CONTENT IS PROVIDED AS IS, WITHOUT EXPRESS

More information

SQL Gone Wild: Taming Bad SQL the Easy Way (or the Hard Way) Sergey Koltakov Product Manager, Database Manageability

SQL Gone Wild: Taming Bad SQL the Easy Way (or the Hard Way) Sergey Koltakov Product Manager, Database Manageability SQL Gone Wild: Taming Bad SQL the Easy Way (or the Hard Way) Sergey Koltakov Product Manager, Database Manageability Oracle Enterprise Manager Top-Down, Integrated Application Management Complete, Open,

More information

Discover the all-flash storage company for the on-demand world

Discover the all-flash storage company for the on-demand world Discover the all-flash storage company for the on-demand world STORAGE FOR WHAT S NEXT The applications we use in our personal lives have raised the level of expectations for the user experience in enterprise

More information

All-Flash Storage Solution for SAP HANA:

All-Flash Storage Solution for SAP HANA: All-Flash Storage Solution for SAP HANA: Storage Considerations using SanDisk Solid State Devices WHITE PAPER Western Digital Technologies, Inc. 951 SanDisk Drive, Milpitas, CA 95035 www.sandisk.com Table

More information

Cisco Unified Computing System Delivering on Cisco's Unified Computing Vision

Cisco Unified Computing System Delivering on Cisco's Unified Computing Vision Cisco Unified Computing System Delivering on Cisco's Unified Computing Vision At-A-Glance Unified Computing Realized Today, IT organizations assemble their data center environments from individual components.

More information

Nimble Storage vs HPE 3PAR: A Comparison Snapshot

Nimble Storage vs HPE 3PAR: A Comparison Snapshot Nimble Storage vs HPE 3PAR: A 1056 Baker Road Dexter, MI 48130 t. 734.408.1993 Nimble Storage vs HPE 3PAR: A INTRODUCTION: Founders incorporated Nimble Storage in 2008 with a mission to provide customers

More information

An Oracle White Paper June Exadata Hybrid Columnar Compression (EHCC)

An Oracle White Paper June Exadata Hybrid Columnar Compression (EHCC) An Oracle White Paper June 2011 (EHCC) Introduction... 3 : Technology Overview... 4 Warehouse Compression... 6 Archive Compression... 7 Conclusion... 9 Introduction enables the highest levels of data compression

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

Trouble-free Upgrade to Oracle Database 12c with Real Application Testing

Trouble-free Upgrade to Oracle Database 12c with Real Application Testing Trouble-free Upgrade to Oracle Database 12c with Real Application Testing Kurt Engeleiter Principal Product Manager Safe Harbor Statement The following is intended to outline our general product direction.

More information

Expand In-Memory Capacity at a Fraction of the Cost of DRAM: AMD EPYCTM and Ultrastar

Expand In-Memory Capacity at a Fraction of the Cost of DRAM: AMD EPYCTM and Ultrastar White Paper March, 2019 Expand In-Memory Capacity at a Fraction of the Cost of DRAM: AMD EPYCTM and Ultrastar Massive Memory for AMD EPYC-based Servers at a Fraction of the Cost of DRAM The ever-expanding

More information

Evaluation Report: HP StoreFabric SN1000E 16Gb Fibre Channel HBA

Evaluation Report: HP StoreFabric SN1000E 16Gb Fibre Channel HBA Evaluation Report: HP StoreFabric SN1000E 16Gb Fibre Channel HBA Evaluation report prepared under contract with HP Executive Summary The computing industry is experiencing an increasing demand for storage

More information

Oracle Hyperion Profitability and Cost Management

Oracle Hyperion Profitability and Cost Management Oracle Hyperion Profitability and Cost Management Configuration Guidelines for Detailed Profitability Applications November 2015 Contents About these Guidelines... 1 Setup and Configuration Guidelines...

More information

Achieving Horizontal Scalability. Alain Houf Sales Engineer

Achieving Horizontal Scalability. Alain Houf Sales Engineer Achieving Horizontal Scalability Alain Houf Sales Engineer Scale Matters InterSystems IRIS Database Platform lets you: Scale up and scale out Scale users and scale data Mix and match a variety of approaches

More information

SAS, Sun, Oracle: On Mashups, Enterprise 2.0 and Ideation

SAS, Sun, Oracle: On Mashups, Enterprise 2.0 and Ideation SAS, Sun, Oracle: On Mashups, Enterprise 2.0 and Ideation Charlie Garry, Director, Product Manager, Oracle Corporation Charlie Garry, Director, Product Manager, Oracle Corporation Paul Kent, Vice President,

More information

SAP HANA Scalability. SAP HANA Development Team

SAP HANA Scalability. SAP HANA Development Team SAP HANA Scalability Design for scalability is a core SAP HANA principle. This paper explores the principles of SAP HANA s scalability, and its support for the increasing demands of data-intensive workloads.

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

FlexPod. The Journey to the Cloud. Technical Presentation. Presented Jointly by NetApp and Cisco

FlexPod. The Journey to the Cloud. Technical Presentation. Presented Jointly by NetApp and Cisco FlexPod The Journey to the Cloud Technical Presentation Presented Jointly by NetApp and Cisco Agenda Alliance Highlights Introducing FlexPod One Shared Vision and Journey FlexPod for the Oracle base base

More information

Consolidating OLTP Workloads on Dell PowerEdge R th generation Servers

Consolidating OLTP Workloads on Dell PowerEdge R th generation Servers Consolidating OLTP Workloads on Dell PowerEdge R720 12 th generation Servers B Balamurugan Phani MV Dell Database Solutions Engineering March 2012 This document is for informational purposes only and may

More information

Strategic Briefing Paper Big Data

Strategic Briefing Paper Big Data Strategic Briefing Paper Big Data The promise of Big Data is improved competitiveness, reduced cost and minimized risk by taking better decisions. This requires affordable solution architectures which

More information

On BigFix Performance: Disk is King. How to get your infrastructure right the first time! Case Study: IBM Cloud Development - WW IT Services

On BigFix Performance: Disk is King. How to get your infrastructure right the first time! Case Study: IBM Cloud Development - WW IT Services On BigFix Performance: Disk is King How to get your infrastructure right the first time! Case Study: IBM Cloud Development - WW IT Services Authors: Shaun T. Kelley, Mark Leitch Abstract: Rolling out large

More information

EMC Documentum 6.5 with SQL Server 2008 Reaches New Heights in Scalability and Performance, Driving Lower Customer TCO

EMC Documentum 6.5 with SQL Server 2008 Reaches New Heights in Scalability and Performance, Driving Lower Customer TCO EMC Documentum 6.5 with SQL Server 2008 Reaches New Heights in Scalability and Performance, Driving Lower Customer TCO White Paper Published: April 2009 Applies to: SQL Server 2008 Introduction: This white

More information

stec Host Cache Solution

stec Host Cache Solution White Paper stec Host Cache Solution EnhanceIO SSD Cache Software and the stec s1120 PCIe Accelerator speed decision support system (DSS) workloads and free up disk I/O resources for other applications.

More information

Netezza The Analytics Appliance

Netezza The Analytics Appliance Software 2011 Netezza The Analytics Appliance Michael Eden Information Management Brand Executive Central & Eastern Europe Vilnius 18 October 2011 Information Management 2011IBM Corporation Thought for

More information

Azure Scalability Prescriptive Architecture using the Enzo Multitenant Framework

Azure Scalability Prescriptive Architecture using the Enzo Multitenant Framework Azure Scalability Prescriptive Architecture using the Enzo Multitenant Framework Many corporations and Independent Software Vendors considering cloud computing adoption face a similar challenge: how should

More information

White Paper FUJITSU Storage ETERNUS DX S4/S3 series Extreme Cache/Extreme Cache Pool best fit for fast processing of vast amount of data

White Paper FUJITSU Storage ETERNUS DX S4/S3 series Extreme Cache/Extreme Cache Pool best fit for fast processing of vast amount of data White Paper FUJITSU Storage ETERNUS DX S4/S3 series Extreme Cache/Extreme Cache Pool best fit for fast processing of vast amount of data Extreme Cache / Extreme Cache Pool, which expands cache capacity

More information

Private Cloud Database Consolidation Name, Title

Private Cloud Database Consolidation Name, Title Private Cloud Database Consolidation Name, Title Agenda Cloud Introduction Business Drivers Cloud Architectures Enabling Technologies Service Level Expectations Customer Case Studies Conclusions

More information

Mainframe Backup Modernization Disk Library for mainframe

Mainframe Backup Modernization Disk Library for mainframe Mainframe Backup Modernization Disk Library for mainframe Mainframe is more important than ever itunes Downloads Instagram Photos Twitter Tweets Facebook Likes YouTube Views Google Searches CICS Transactions

More information

Properly Sizing Processing and Memory for your AWMS Server

Properly Sizing Processing and Memory for your AWMS Server Overview This document provides guidelines for purchasing new hardware which will host the AirWave Wireless Management System. Your hardware should incorporate margin for WLAN expansion as well as future

More information

Performance and Scalability Benchmark: Siebel CRM Release 7 on HP-UX Servers and Oracle9i Database. An Oracle White Paper Released October 2003

Performance and Scalability Benchmark: Siebel CRM Release 7 on HP-UX Servers and Oracle9i Database. An Oracle White Paper Released October 2003 Performance and Scalability Benchmark: Siebel CRM Release 7 on HP-UX Servers and Oracle9i Database An Oracle White Paper Released October 2003 Performance and Scalability Benchmark: Siebel CRM Release

More information

Designing elastic storage architectures leveraging distributed NVMe. Your network becomes your storage!

Designing elastic storage architectures leveraging distributed NVMe. Your network becomes your storage! Designing elastic storage architectures leveraging distributed NVMe Your network becomes your storage! Your hosts from Excelero 2 Yaniv Romem CTO & Co-founder Josh Goldenhar Vice President Product Management

More information

LEVERAGING EMC FAST CACHE WITH SYBASE OLTP APPLICATIONS

LEVERAGING EMC FAST CACHE WITH SYBASE OLTP APPLICATIONS White Paper LEVERAGING EMC FAST CACHE WITH SYBASE OLTP APPLICATIONS Abstract This white paper introduces EMC s latest innovative technology, FAST Cache, and emphasizes how users can leverage it with Sybase

More information

TPC-E testing of Microsoft SQL Server 2016 on Dell EMC PowerEdge R830 Server and Dell EMC SC9000 Storage

TPC-E testing of Microsoft SQL Server 2016 on Dell EMC PowerEdge R830 Server and Dell EMC SC9000 Storage TPC-E testing of Microsoft SQL Server 2016 on Dell EMC PowerEdge R830 Server and Dell EMC SC9000 Storage Performance Study of Microsoft SQL Server 2016 Dell Engineering February 2017 Table of contents

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

Impact of Dell FlexMem Bridge on Microsoft SQL Server Database Performance

Impact of Dell FlexMem Bridge on Microsoft SQL Server Database Performance Impact of Dell FlexMem Bridge on Microsoft SQL Server Database Performance A Dell Technical White Paper Dell Database Solutions Engineering Jisha J Leena Basanthi October 2010 THIS WHITE PAPER IS FOR INFORMATIONAL

More information

Configuration changes such as conversion from a single instance to RAC, ASM, etc.

Configuration changes such as conversion from a single instance to RAC, ASM, etc. Today, enterprises have to make sizeable investments in hardware and software to roll out infrastructure changes. For example, a data center may have an initiative to move databases to a low cost computing

More information

How Microsoft IT Reduced Operating Expenses Using Virtualization

How Microsoft IT Reduced Operating Expenses Using Virtualization How Microsoft IT Reduced Operating Expenses Using Virtualization Published: May 2010 The following content may no longer reflect Microsoft s current position or infrastructure. This content should be viewed

More information

Understanding the ESVA Architecture

Understanding the ESVA Architecture Understanding the ESVA Architecture Overview Storage virtualization is the basis of the ESVA (Enterprise Scalable Virtualized Architecture). The virtualized storage powered by the architecture is highly

More information

EsgynDB Enterprise 2.0 Platform Reference Architecture

EsgynDB Enterprise 2.0 Platform Reference Architecture EsgynDB Enterprise 2.0 Platform Reference Architecture This document outlines a Platform Reference Architecture for EsgynDB Enterprise, built on Apache Trafodion (Incubating) implementation with licensed

More information

White Paper. Securing the virtual infrastructure without impacting performance

White Paper. Securing the virtual infrastructure without impacting performance White Paper Securing the virtual infrastructure without impacting performance Introduction Virtualization offers many benefits, but also raises additional performance issues in areas of security. This

More information

Teradata Analyst Pack More Power to Analyze and Tune Your Data Warehouse for Optimal Performance

Teradata Analyst Pack More Power to Analyze and Tune Your Data Warehouse for Optimal Performance Data Warehousing > Tools & Utilities Teradata Analyst Pack More Power to Analyze and Tune Your Data Warehouse for Optimal Performance By: Rod Vandervort, Jeff Shelton, and Louis Burger Table of Contents

More information

REFERENCE ARCHITECTURE Microsoft SQL Server 2016 Data Warehouse Fast Track. FlashStack 70TB Solution with Cisco UCS and Pure Storage FlashArray//X

REFERENCE ARCHITECTURE Microsoft SQL Server 2016 Data Warehouse Fast Track. FlashStack 70TB Solution with Cisco UCS and Pure Storage FlashArray//X REFERENCE ARCHITECTURE Microsoft SQL Server 2016 Data Warehouse Fast Track FlashStack 70TB Solution with Cisco UCS and Pure Storage FlashArray//X FLASHSTACK REFERENCE ARCHITECTURE September 2018 TABLE

More information

Analytics in the Cloud Mandate or Option?

Analytics in the Cloud Mandate or Option? Analytics in the Cloud Mandate or Option? Rick Lower Sr. Director of Analytics Alliances Teradata 1 The SAS & Teradata Partnership Overview Partnership began in 2007 to improving analytic performance Teradata

More information

Virtualization of the MS Exchange Server Environment

Virtualization of the MS Exchange Server Environment MS Exchange Server Acceleration Maximizing Users in a Virtualized Environment with Flash-Powered Consolidation Allon Cohen, PhD OCZ Technology Group Introduction Microsoft (MS) Exchange Server is one of

More information

Oracle Database 10G. Lindsey M. Pickle, Jr. Senior Solution Specialist Database Technologies Oracle Corporation

Oracle Database 10G. Lindsey M. Pickle, Jr. Senior Solution Specialist Database Technologies Oracle Corporation Oracle 10G Lindsey M. Pickle, Jr. Senior Solution Specialist Technologies Oracle Corporation Oracle 10g Goals Highest Availability, Reliability, Security Highest Performance, Scalability Problem: Islands

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

Why Converged Infrastructure?

Why Converged Infrastructure? Why Converged Infrastructure? Three reasons to consider converged infrastructure for your organization Converged infrastructure isn t just a passing trend. It s here to stay. A recent survey 1 by IDG Research

More information

<Insert Picture Here> MySQL Web Reference Architectures Building Massively Scalable Web Infrastructure

<Insert Picture Here> MySQL Web Reference Architectures Building Massively Scalable Web Infrastructure MySQL Web Reference Architectures Building Massively Scalable Web Infrastructure Mario Beck (mario.beck@oracle.com) Principal Sales Consultant MySQL Session Agenda Requirements for

More information

SoftNAS Cloud Performance Evaluation on AWS

SoftNAS Cloud Performance Evaluation on AWS SoftNAS Cloud Performance Evaluation on AWS October 25, 2016 Contents SoftNAS Cloud Overview... 3 Introduction... 3 Executive Summary... 4 Key Findings for AWS:... 5 Test Methodology... 6 Performance Summary

More information

FC-NVMe. NVMe over Fabrics. Fibre Channel the most trusted fabric can transport NVMe natively. White Paper

FC-NVMe. NVMe over Fabrics. Fibre Channel the most trusted fabric can transport NVMe natively. White Paper FC-NVMe NVMe over Fabrics Fibre Channel the most trusted fabric can transport NVMe natively BACKGROUND AND SUMMARY Ever since IBM shipped the world s first hard disk drive (HDD), the RAMAC 305 in 1956,

More information

The HP 3PAR Get Virtual Guarantee Program

The HP 3PAR Get Virtual Guarantee Program Get Virtual Guarantee Internal White Paper The HP 3PAR Get Virtual Guarantee Program Help your customers increase server virtualization efficiency with HP 3PAR Storage HP Restricted. For HP and Channel

More information