EMC Business Continuity for Microsoft SQL Server Enabled by SQL DB Mirroring Celerra Unified Storage Platforms Using iscsi
|
|
- Clyde Webb
- 4 years ago
- Views:
Transcription
1 EMC Business Continuity for Microsoft SQL Server Enabled by SQL DB Mirroring Applied Technology Abstract Microsoft SQL Server includes a powerful capability to protect active databases by using either synchronous or asynchronous mirroring to automatically fail over to the mirror site in the event of a failure on the primary site. This white paper examines the performance implications of enabling this feature and how those implications change in the presence of a wide-area network connection between the sites. June 2009
2 Copyright 2009 EMC Corporation. All rights reserved. EMC believes the information in this publication is accurate as of its publication date. The information is subject to change without notice. THE INFORMATION IN THIS PUBLICATION IS PROVIDED AS IS. EMC CORPORATION MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND WITH RESPECT TO THE INFORMATION IN THIS PUBLICATION, AND SPECIFICALLY DISCLAIMS IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Use, copying, and distribution of any EMC software described in this publication requires an applicable software license. For the most up-to-date listing of EMC product names, see EMC Corporation Trademarks on EMC.com All other trademarks used herein are the property of their respective owners. Part Number h6393 Applied Technology 2
3 Table of Contents Executive summary...4 Introduction...4 Audience... 4 Terminology... 4 Overview of SQL database mirroring...5 Test environment...6 Storage architecture... 6 Hardware resources... 7 Software resources... 7 Test methodology...8 Test results...8 Database mirroring on a LAN... 8 Database mirroring on a WAN SATA drives at the mirror server...16 Conclusion...23 References...24 Applied Technology 3
4 Executive summary It is important for IT planners and database administrators to plan and maintain high availability of databases in the event of disasters and planned or unplanned outages. Planned outages can include system upgrades and patch installations, and unplanned outages can include hardware failures, power failures, link failures, natural calamities, and terrorism. It is challenging to keep the database available during such events with no or minimum possible data loss and interruption to the production workload, while keeping the associated costs to a minimum. To have the database available in all these cases, a secondary copy must be maintained at a geographically distant location or at the same place depending on the criticality of the database. EMC Celerra provides array-based replication technology called Celerra Replicator for iscsi, which can be used to protect SQL databases and provide a secondary copy of the database for disaster recovery (DR). EMC Solutions for Microsoft SQL Server EMC Celerra Unified Storage Platforms Reference Architecture available on Powerlink provides more details on array-based technologies of EMC Celerra. Apart from these array-based technologies, Microsoft SQL Server provides a native feature for high availability called database mirroring. In this method, the log records are transferred to a remote database server and applied to the remote database, thus keeping the remote database up to date with the recent changes on the primary database. There are two operating modes in SQL database mirroring, synchronous and asynchronous. Each operating mode has its own advantages and disadvantages. The database mirroring performance depends on the operating mode and the network characteristics. This white paper explains the following recommendations based on different test scenarios: The two operating modes for database mirroring, synchronous and asynchronous, provide different tradeoffs that must be evaluated for each environment individually. Asynchronous mirroring provides protection with minimal impact to the performance of the primary server, but with some possibility of data loss. Synchronous mirroring provides protection with no data loss, but with greater impact to the performance of the primary server. The cost for each method, potential data loss, or performance is directly related to the quality of the network connection between the sites. This relationship will hold regardless of the storage platform used. Introduction This white paper helps you to select the suitable database mirroring operating mode depending on your recovery time objective (RTO) and recovery point objective (RPO) requirements. It also shows how the database mirroring performance varies with varying network properties. It explores the possibility of reducing the total cost of ownership of your database mirroring solution by using low-cost storage at the secondary site. Audience This white paper is intended for EMC personnel, EMC partners, and customers. Terminology Mirror: The mirror is the copy of the principal database. The server that hosts the mirror database is known as the mirror server. The mirror is not accessible to the applications and is always in a restoring state. Applied Technology 4
5 Principal: In database mirroring, there are two copies of a single database, but only one copy is accessible to the clients at any given time. The copy of the database that the applications connect to is called the principal database. The server that hosts the principal database is known as the principal server. Recovery point objective (RPO): RPO is the point in time to which systems and data must be recovered after an outage. This defines the amount of data loss a business can endure. Recovery time objective (RTO): RTO is the period of time within which systems, applications, or functions must be recovered after an outage. This defines the amount of downtime that a business can endure and survive. Witness: When database mirroring is used in synchronous mode, the witness provides a mechanism for automatic failover. The witness server does not manage any transactions, but simply serves as a tie-breaker vote when principal and mirror are trying to do automatic state changes. Overview of SQL database mirroring In database mirroring, two copies of a single database are maintained on two partner servers. At any time only one copy is available to the clients and the other copy acts as a standby. The database that is serving clients is known as the principal database and the server holding the principal database is known as the principal server. The standby database copy is called the mirror database and the server that holds this database is called the mirror server. The principal server transfers a stream of database log records and these are applied on the mirror database. Every database modification made on the principal database is applied on the mirror database. This includes not only the data modifications but also any modifications to the physical or logical structure of the database. There are two operating modes in database mirroring. Microsoft calls these high-safety and highperformance modes. High-safety mode is synchronous mirroring, while high-performance mode is asynchronous mirroring. The operating modes are set by using the transaction safety settings. If the transaction safety is set to FULL, it is in high-safety (or synchronous mirroring) mode. In the high-safety mode, the principal server waits for an acknowledgement from the mirror server before committing a transaction thus increasing the transaction latency. If the transaction safety setting is set to OFF, the operating mode is called high-performance (or asynchronous mirroring) mode. In this mode, the principal server sends a confirmation to the client immediately after sending the log record to the mirror server without waiting for an acknowledgement from it. The mirror server tries to keep up with the log records sent by the principal. The mirror server might lag behind the principal database. The gap between the principal and the mirror server depends on the workload on the principal and also on throughput and latency of the network between the two servers. In asynchronous mirroring, typically the transaction latency is small because there is no wait time involved but there is a risk of some data loss. While sending the log records from the principal to the mirror, if the log records cannot be sent at the rate at which they are generated, a queue builds up at the principal. This is known as a send queue. The send queue does not use extra storage or memory. It exists entirely in the transaction log of the principal. It refers to the part of the log that has not yet been sent to the mirror. While applying log records on the mirror, if the log records cannot be applied at the rate at which they are received, a queue builds up at the mirror. This is known as a redo queue. Similar to the send queue, the redo queue also does not use extra storage or memory. It exists entirely in the transaction log of the mirror. It refers to the part of the hardened log that remains to be applied to the mirror database to roll it forward. When the principal database or the server hosting fails, database mirroring provides a mechanism to fail over to the mirror database. When the principal server fails, an administrator can log in to the mirror server and bring it online as the principal. When this is completed, the database is once again available for user transactions. However, some applications require a much faster response to failure than would be possible if you rely solely on an administrator to complete a process. For such scenarios SQL Server database mirroring also has the ability to fail over automatically. Automatic failover is an extension of the high-safety mode called high-availability mode. It is not applicable in the high-performance asynchronous mirroring mode. It requires the addition of a third database server role called a witness. The witness server does not manage any transactions, but simply Applied Technology 5
6 serves as a tie-breaker vote when the principal and mirror are trying to do automatic state changes. When the principal and mirror lose contact with each other both will try to contact the witness. If the witness can still communicate with the principal, then nothing changes. However, if the witness cannot contact the principal, the mirror server becomes the principal and comes online automatically. Witness is very similar to the quorum resource, which is commonly used for failover clustering implementations and prevents a split-brain, a condition in which both sides in a cluster relationship are prevented from being online at the same time. Test environment This section describes the test environment. Figure 1 shows the reference architecture diagram of a SQL database mirroring setup by using EMC Celerra iscsi storage. Figure 1 SQL database mirroring Reference Architecture Storage architecture One EMC Celerra NS40 is connected to each database server. Table 1 provides the details of Celerra configuration. Table 1 Celerra configuration Hardware DART version Disks RAID config and disk layout EMC Celerra NS40 Fifteen FC disks in one shelf, each disk with 300 GB and 15k rpm Fifteen additional SATA disks at the mirror with 1 TB and 7200 rpm (used for the SATA test instead of FC disks at the mirror ) RAID 1 (1+1) config Ten disks for DB and four disks for log Applied Technology 6
7 Figure 2 shows the disk layout used for this testing. Figure 2 Disk layout Ten disks are used to store the DB files and four disks are used to store the log files. The disks are configured by using RAID 1. The storage for the database servers is provisioned by using iscsi. Microsoft iscsi initiator is used to connect to LUNs on the Celerra target. Hardware resources Table 2 lists the configuration of the servers used in the test environment. Table 2 Server configuration Hardware Quantity Configuration 4U servers Two Four 2.8 GHz AMD Opteron dual-core processors 1U server (for WANem machine) 16 GB RAM Six 1 Gb/s Ethernet NICs Two 146 GB, 15k rpm internal SCSI drives One Two 3.0 GHz Intel Xeon processors 2 GB RAM Two on-board 1 Gb/s Ethernet NICs 40 GB hard disk Software resources Table 3 lists the software resources used in the test environment. Table 3 Software resources Software Operating system SQL Server Network Emulator Description Microsoft Windows Server 2008 Enterprise Edition (64-bit) Microsoft SQL Server 2008 Enterprise Edition (64-bit) WANem for simulating network latency Applied Technology 7
8 Test methodology EMC performed a series of tests to characterize the performance of SQL Server database mirroring. Database mirroring performance is a function of transaction safety levels and environmental characteristics such as the network latency, throughput, and so on. Both transaction safety levels (FULL/OFF or Synchronous /Asynchronous mode) were tested. These tests were performed on LAN and WAN environments with different network latencies. A T3 WAN link was simulated between the two SQL servers and 10 ms, 30 ms, 50 ms, 70 ms, and 100 ms latencies were tested. The workload was a simulation of an Online Transaction Processing (OLTP) environment suitable for many types of database applications. The workload was simulated and the user counts and TPS metrics reported were only a representation of the system response to this workload. In the remaining section of this paper, one user will be defined as a user in the context of an OLTP user similar to that defined in common industry benchmarks. Table 4 shows the distribution of transactions used in the workload tested. Table 4 Distribution of workload transactions Transaction type Percentage (%) Stock level transaction 4.0 Delivery transaction 4.0 Order status transaction 4.0 Payment transaction 43.0 New order transaction 45.0 A configuration is considered to be scaling linearly if the transaction per second (TPS) obtained increases linearly with scaling user load and the average response time is less than 2 seconds. The configuration saturates at the point when TPS declines and average response time crosses 2 seconds. The saturation user count (or the maximum supported users) is the point just before the 2 seconds gating metrics. The results shown are the comparative numbers and not absolute values. For example, if the TPS obtained for a configuration in the LAN environment is 50 and the value drops to 40 after including a WAN delay of 10 ms, then the TPS value for the 10-ms scenario is shown in the graph as 80 percent of the LAN scenario TPS. Note: In figures containing a series for both TPS and average response time, the higher values for TPS are preferred, while the lower values for average response time are preferred. Test results This section details the results of the various tests outlined in the previous section. Database mirroring on a LAN Figure 3 on page 9 compares the saturation user counts for three scenarios tested in a LAN environment. The first one is the baseline for comparison. This is a standalone server without mirroring. In the other two scenarios, SQL Server is configured with synchronous (safety FULL) and asynchronous (safety OFF) database mirroring modes. Both principal and mirror servers are connected in a LAN environment. The network delay in this case is less than 1 ms. Applied Technology 8
9 Figure 3 Database mirroring performance comparison with the baseline in a LAN Both synchronous and asynchronous mirroring mode scenarios saturated at 73 percent of the baseline saturation users. This indicates that there is a 27 percent performance decline in terms of maximum supported users when using either of the database mirroring modes. Both the mirroring scenarios saturated at the same user count in the LAN scenario. This contrasts with the theory that asynchronous mode performs better than synchronous mode. Even though the saturation levels are the same, asynchronous mode clearly outperforms synchronous mode in terms of TPS and average response time. Applied Technology 9
10 Figure 4 shows TPS and the average response time for synchronous and asynchronous modes. Figure 4 Comparison of TPS and average response time with the baseline The saturation user count is the same for both modes in a LAN environment, but the difference is obvious when the principal and mirror servers are connected through a WAN (explained in the following sections). Figure 4 shows that there is a significant difference in the average response time and TPS values between the synchronous and asynchronous modes. While in synchronous mode, the average response time values increased to more than 300 percent and TPS dropped to 95 percent of the baseline scenario values. For the asynchronous mirroring mode these values stayed almost equal to their baseline values. Synchronous mirroring is suitable in environments where data loss is unacceptable, and the associated performance decline is acceptable. Asynchronous mirroring is suitable when some data can be lost to improve the performance of the system. The magnitude of these tradeoffs is described in the following sections. Database mirroring on a WAN Database mirroring on WAN is a commonly used scenario. Normally the mirror server is located at a distant location from the principal server. This serves as a disater recovery (DR) solution and if there is a problem at the primary site, database operations can still continue from the mirror site. This section presents the test results of both database mirroring methods performed in a simulated WAN environment. A T3 WAN link was simulated between the principal and the mirror sites. The bandwidth remained constant and the latencies were changed to study the performance implications. Applied Technology 10
11 Figure 5 shows the saturation user counts for both mirroring methods with varying network latency. Figure 5 Synchronous and asynchronous mode performance comparison on a WAN Note: The OLTP users supported in the synchronous and asynchronous modes during the LAN test are taken as a baseline for calculating values shown in the graph. As the network latency increases, the database that is configured with synchronous mirroring mode saturates more quickly than the database that is configured with asynchronous mirroring mode. The value of maximum number of OLTP users supported reduces gradually as the latency increases. When the WAN latency is 100 ms, synchronous mode supports only 25 percent of the users that it supported in the LAN environment. In the asynchronous mirroring mode, the saturation user count remains constant irrespective of the WAN delay. A constant OLTP user load that is 70 percent of baseline (LAN scenario) saturation is run on both scenarios to study the performance implications with varying network latencies. The following section illustrates how each mode performed with increasing network latencies. Figure 6 on page 12 shows the impact of network latency on the average response time and TPS values compared to the 100 ms latency value. Applied Technology 11
12 Figure 6 Synchronous mirroring TPS and average response time with increasing network latency Note: The TPS and average response time percentage values are calculated based on the values obtained in the 100 ms WAN latency test. Figure 6 shows that with synchronous mirroring, the average response time values rise to very high values as the network latency increases. Similarly, the TPS values drop to low values as the network latency increases. Applied Technology 12
13 Figure 7 shows the average delay per transaction as the network latency increases for synchronous mirroring. Figure 7 Synchronous mirroring Average delay per transaction with increasing network latency Figure 7 shows the average delay per transaction as the network latency increases.the transactional delay increases in line with the network latency in synchronous mirroring. This means that the principal server must wait longer to receive the acknowledgement from the mirror server to complete a transaction. Hence, average response time increases and TPS decreases as the network latency increases. The transaction delay in asynchronous mirroring is always zero. Applied Technology 13
14 Figure 8 shows the average delay per transaction as the network latency increases for asynchronous mirroring. Figure 8 WAN latency Asynchronous mirroring TPS and average response time with increasing Figure 8 shows that as the network latency increases, asynchronous mirroring does not show any performance degradation. The average response time and TPS values are almost constant for all the WAN latencies (note that the average response time value is in milliseconds and the deviation from max to min is less than 3 ms). This is because there is no wait time involved in asynchronous mirroring. The transactional delay is zero in all the tested latency scenarios. Though asynchronous mirroring is better from the performance standpoint, it poses a risk of data loss in the event of a principal server failure. In database mirroring, when log records are sent from the principal database to the mirror database, a send queue builds up at the principal if the log records cannot be sent at the rate at which they are generated. This is the total number of bytes of log that have not yet been sent to the mirror server. The size of unsent logs is an indicator of the possible data loss in the event of a principal server failure. If there is no log send queue at the principal server, it means that all the data on the principal server has been transmitted and received by the mirror server. If the log send queue exists, it means that the mirror server is lagging behind the principal server by the number of log records equal to the size of the log send queue. Applied Technology 14
15 Figure 9 shows the log send queue at the principal server in asynchronous mirroring. Figure 9 Asynchronous mirroring Log send queue As the network latency increases, the send queue increases. In the asynchronous mode, the unsent log accumulates when the mirror server falls behind the principal server (and also when the mirroring is paused or suspended). Therefore, it can be concluded that in case of principal server failure: There is a minimal risk of data loss in synchronous mirroring. There is a risk of data loss for asynchronous mirroring and the degree of it increases as the network latency increases. The log send queue for synchronous mirroring is almost zero in all the tested scenarios. This is an expected behavior. In synchronous mirroring, after synchronization, the unsent log is accumulated only when the mirroring is paused or suspended. After receiving the log records from the principal, the mirror server writes them to the log disk and redoes the log on the mirror to roll the mirror database forward. If the principal server sends the log records quicker than the mirror can roll forward, a redo queue is built up at the mirror. This redo queue is an indicator of the time required to fail over to the mirror server in case of failure. The actual time to roll forward all the records on the redo queue depends on the system hardware and the current workload. The longer the redo queue, the longer it takes to fail over to the mirror server. Applied Technology 15
16 Figure 10 shows the log redo queue on the mirror server for both synchronous and asynchronous mirroring. Figure 10 Redo queue (in both the mirroring modes) as network latency increases Figure 10 shows that the redo queue starting from a 30 ms WAN delay in synchronous mode is very small. This is because of the reduction in the TPS starting from 30 ms, and hence, the reduction in the amount of log records sent to the mirror server. In asynchronous mode, the redo queue increases as the network latency increases. This indicates that as the network latency increases, the asynchronous mode requires more time to fail over to the mirror. The synchronous mirroring mode achieves better RTO when compared with the asynchronous mirroring mode. SATA drives at the mirror server EMC performed testing to explore the possibility of replacing the FC drives with low-cost SATA drives at the mirror server, while the principal server is still using FC disks. This is to explore if this approach can be used on the lightly loaded databases where the log generation rate of the principal server is comparatively low but the database is critical enough to be mirrored to the remote location. If this proves to be a practical use case, the costly FC drives can be replaced with the low-cost SATA drives, thus reducing the total cost of ownership (TCO) of the solution. Applied Technology 16
17 The test configuration is not changed except that the SATA drives are replacing FC drives at the mirror server. The workload used in this test is exactly the same as that used in the scenario where FC drives are connected at both the principal and mirror sites. Figure 11 shows the comparison of saturation user count for the synchronous mirroring mode for FC and SATA disk scenarios. Figure 11 Synchronous mirroring saturation user count FC disks and SATA disks at the mirror server The saturation user counts at all the WAN latencies tested are absolutely equal for both scenarios. Applied Technology 17
18 Figure 12 shows the saturation user count for the asynchronous mirroring mode for both FC and SATA disk scenarios at different WAN latencies. Figure 12 Asynchronous mirroring mode saturation user count FC disks compared with SATA disks at the mirror server From Figure 12 it is clear that the results were the same for both scenarios at all the latencies tested. Applied Technology 18
19 Figure 13 shows TPS and average response time values in the synchronous mirroring mode for both FC and SATA disk scenarios with a constant user load at different WAN latencies. Figure 13 Synchronous mirroring TPS and average response time comparison for FC and SATA at the mirror site Figure 13 shows that the TPS and average response time values for both scenarios are almost equal. Applied Technology 19
20 Figure 14 shows TPS and average response time comparisons in the asynchronous mirroring mode for both FC and SATA disk scenarios with a constant user load at different WAN latencies. Figure 14 Asynchronous mirroring TPS and average response time comparison for FC and SATA disks at the mirror site The average response time values are higher for the SATA disk scenario compared to the FC disk scenario. At a 100 ms WAN delay, the average response time value for the SATA disk scenario is 9.5 times more than the FC disk scenario. However, there is no difference in TPS because the values are almost equal throughout the tested range. Applied Technology 20
21 Figure 15 shows the log send queue in the asynchronous mirroring mode for both FC and SATA drive scenarios for a constant user load at different WAN latencies. Figure 15 Async mirroring Log send queue comparison for FC and SATA drives at the mirror site The log send queue values for both scenarios are comparable and do not differ greatly. Applied Technology 21
22 Figure 16 shows the redo queue for both scenarios. Figure 16 Asynchronous mirroring Redo queue comparison for FC and SATA disks at the mirror site The redo queue for the SATA disk scenario is always greater than the FC disk scenario. This means that in case of a disaster, the SATA disk scenario will take a longer time to fail over compared to the FC disk scenario. The general assumption is that the SATA disk scenario will result in less performance because of the following reasons. Proven performance superiority of FC disks The mirror server data disks handle higher write rates compared to the principal server Figure 16 shows that the SATA disks at the mirror site also perform almost equal to the FC disk scenario in terms of saturation user counts and TPS values. This is probably because the SATA drives are not fully busy at the tested user load as shown in Figure 17 on page 23. Applied Technology 22
23 Figure 17 SATA disk idle time at the mirror site during asynchronous mirroring The following points should be taken into consideration when SATA drives are used at the mirror site: RTO will be poor because SATA drives will take more time to roll forward the database in case of a disaster. In case of a disaster, the production database will be running on SATA drives and hence the performance levels will be poor when compared to the FC disks. The results shown in Figure 16 on page 22 are obtained in an EMC test lab environment. Because no two environments are the same, results may vary in other environments. It is advised to test the performance before making a decision to use SATA drives in any production environment. Conclusion The following conclusions can be drawn from the tests: The addition of database mirroring to your environment may incur a performance penalty. In the OLTP environment presented in this paper, the penalty was around 27 percent. As the latency of the network connection between the principal and mirror site increases, there are clear impacts on the mirror relationship. In the case of synchronous mirroring, the performance of the primary database will decline, while in asynchronous mirroring the mirror server will begin to lag behind the primary. The exact magnitude of these effects is dependent on the workload being serviced and on the network connection between the two sites. There is a risk of data loss in case of principal server failure in asynchronous mirroring mode. The degree of data loss increases as the network latency increases. Applied Technology 23
24 For some workloads, the mirror server may be able to use SATA drives while the primary server uses FC. Such an approach may help reduce the cost associated with the solution. However, thorough testing must be done to ensure that this approach can meet the organization service levels during primary operation, and in the event of a failover. References The following documents are available on Powerlink: EMC Solutions for Microsoft SQL Server EMC Celerra Unified Storage Platforms Applied Best Practices white paper EMC Solutions for Microsoft SQL Server 2005 on VMware ESX Server EMC CLARiiON CX3 FCP Applied Best Practices white paper EMC Solutions for Microsoft SQL Server EMC Celerra Unified Storage Platforms Reference Architecture EMC Solutions for Microsoft SQL Server 2008 for Tiered Storage Enabled by EMC CLARiiON CX4 Series on iscsi and Windows 2008 Reference Architecture EMC Solutions for Tiered Storage for Microsoft SQL Server 2008 Enabled by EMC CLARiiON CX4 Series iscsi, Windows 2008, and VMware ESX Server Reference Architecture EMC Solutions for Microsoft SQL Server 2005 on Windows 2008 EMC CLARiiON CX3 Series FCP Reference Architecture Applied Technology 24
EMC Business Continuity for Microsoft SQL Server 2008
EMC Business Continuity for Microsoft SQL Server 2008 Enabled by EMC Celerra Fibre Channel, EMC MirrorView, VMware Site Recovery Manager, and VMware vsphere 4 Reference Architecture Copyright 2009, 2010
EMC Backup and Recovery for Microsoft SQL Server
EMC Backup and Recovery for Microsoft SQL Server Enabled by Quest LiteSpeed Copyright 2010 EMC Corporation. All rights reserved. Published February, 2010 EMC believes the information in this publication
Using VMware VMotion with Oracle Database and EMC CLARiiON Storage Systems
Using VMware VMotion with Oracle Database and EMC CLARiiON Storage Systems Applied Technology Abstract By migrating VMware virtual machines from one physical environment to another, VMware VMotion can
EMC Virtual Infrastructure for Microsoft SQL Server
Microsoft SQL Server Enabled by EMC Celerra and Microsoft Hyper-V Copyright 2010 EMC Corporation. All rights reserved. Published February, 2010 EMC believes the information in this publication is accurate
EMC Backup and Recovery for Microsoft SQL Server
EMC Backup and Recovery for Microsoft SQL Server Enabled by EMC NetWorker Module for Microsoft SQL Server Copyright 2010 EMC Corporation. All rights reserved. Published February, 2010 EMC believes the
EMC Backup and Recovery for Microsoft SQL Server 2008 Enabled by EMC Celerra Unified Storage
EMC Backup and Recovery for Microsoft SQL Server 2008 Enabled by EMC Celerra Unified Storage Applied Technology Abstract This white paper describes various backup and recovery solutions available for SQL
Virtualized Exchange 2007 Local Continuous Replication
EMC Solutions for Microsoft Exchange 2007 Virtualized Exchange 2007 Local Continuous Replication EMC Commercial Solutions Group Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com
EMC Celerra Unified Storage Platforms
EMC Solutions for Microsoft SQL Server EMC Celerra Unified Storage Platforms EMC NAS Product Validation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2008, 2009 EMC
Virtualizing SQL Server 2008 Using EMC VNX Series and Microsoft Windows Server 2008 R2 Hyper-V. Reference Architecture
Virtualizing SQL Server 2008 Using EMC VNX Series and Microsoft Windows Server 2008 R2 Hyper-V Copyright 2011 EMC Corporation. All rights reserved. Published February, 2011 EMC believes the information
EMC Unified Storage for Microsoft SQL Server 2008
EMC Unified Storage for Microsoft SQL Server 2008 Enabled by EMC CLARiiON and EMC FAST Cache Reference Copyright 2010 EMC Corporation. All rights reserved. Published October, 2010 EMC believes the information
Virtualized Exchange 2007 Archiving with EMC EmailXtender/DiskXtender to EMC Centera
EMC Solutions for Microsoft Exchange 2007 Virtualized Exchange 2007 Archiving with EMC EmailXtender/DiskXtender to EMC Centera EMC Commercial Solutions Group Corporate Headquarters Hopkinton, MA 01748-9103
EMC Backup and Recovery for Microsoft Exchange 2007 SP2
EMC Backup and Recovery for Microsoft Exchange 2007 SP2 Enabled by EMC Celerra and Microsoft Windows 2008 Copyright 2010 EMC Corporation. All rights reserved. Published February, 2010 EMC believes the
Microsoft SQL Server 2005 Database Mirroring
Microsoft SQL Server 2005 Database Mirroring Applied Technology Guide Abstract This document reviews the features and usage of SQL Server 2005, Database Mirroring. May 2007 Copyright 2007 EMC Corporation.
Microsoft SharePoint 2010 on VMware Availability and Recovery Options. Microsoft SharePoint 2010 on VMware Availability and Recovery Options
This product is protected by U.S. and international copyright and intellectual property laws. This product is covered by one or more patents listed at http://www.vmware.com/download/patents.html. VMware
EMC Unified Storage for Oracle Database 11g/10g Virtualized Solution. Enabled by EMC Celerra and Linux using NFS and DNFS. Reference Architecture
EMC Unified Storage for Oracle Database 11g/10g Virtualized Solution Enabled by EMC Celerra and Linux using NFS and DNFS Reference Architecture Copyright 2009 EMC Corporation. All rights reserved. Published
Leveraging EMC Fully Automated Storage Tiering (FAST) and FAST Cache for SQL Server Enterprise Deployments
Leveraging EMC Fully Automated Storage Tiering (FAST) and FAST Cache for SQL Server Enterprise Deployments Applied Technology Abstract This white paper introduces EMC s latest groundbreaking technologies,
EMC Integrated Infrastructure for VMware
EMC Integrated Infrastructure for VMware Enabled by EMC Celerra NS-120 Reference Architecture EMC Global Solutions Centers EMC Corporation Corporate Headquarters Hopkinton MA 01748-9103 1.508.435.1000
Microsoft SQL Server 2005 on Windows Server 2003
EMC Backup and Recovery for SAP Microsoft SQL Server 2005 on Windows Server 2003 Enabled by EMC CLARiiON CX3, EMC Disk Library, EMC Replication Manager, EMC NetWorker, and Symantec Veritas NetBackup Reference
Oracle Database Deployments with EMC CLARiiON AX4 Storage Systems
Oracle Database Deployments with EMC CLARiiON AX4 Storage Systems Applied Technology Abstract This white paper investigates configuration and replication choices for Oracle Database deployment with EMC
EMC CLARiiON Guidelines for VMware Site Recovery Manager with EMC MirrorView and Microsoft Exchange
EMC CLARiiON Guidelines for VMware Site Recovery Manager with EMC MirrorView and Microsoft Exchange Best Practices Planning Abstract This white paper presents guidelines for the use of Microsoft Exchange
Solution Brief Availability and Recovery Options: Microsoft Exchange Solutions on VMware
Introduction By leveraging the inherent benefits of a virtualization based platform, a Microsoft Exchange Server 2007 deployment on VMware Infrastructure 3 offers a variety of availability and recovery
Windows Server 2008 Hyper-V Backup and Replication on EMC CLARiiON Storage. Applied Technology
Windows Server 2008 Hyper-V Backup and Replication on EMC CLARiiON Storage Applied Technology Abstract This white paper provides an overview of the technologies that are used to perform backup and replication
Performance Monitoring AlwaysOn Availability Groups. Anthony E. Nocentino aen@centinosystems.com
Performance Monitoring AlwaysOn Availability Groups Anthony E. Nocentino aen@centinosystems.com Anthony E. Nocentino Consultant and Trainer Founder and President of Centino Systems Specialize in system
Reference Architecture. EMC Global Solutions. 42 South Street Hopkinton MA 01748-9103 1.508.435.1000 www.emc.com
EMC Backup and Recovery for SAP with IBM DB2 on IBM AIX Enabled by EMC Symmetrix DMX-4, EMC CLARiiON CX3, EMC Replication Manager, IBM Tivoli Storage Manager, and EMC NetWorker Reference Architecture EMC
EMC Integrated Infrastructure for VMware
EMC Integrated Infrastructure for VMware Enabled by Celerra Reference Architecture EMC Global Solutions Centers EMC Corporation Corporate Headquarters Hopkinton MA 01748-9103 1.508.435.1000 www.emc.com
Oracle Database Scalability in VMware ESX VMware ESX 3.5
Performance Study Oracle Database Scalability in VMware ESX VMware ESX 3.5 Database applications running on individual physical servers represent a large consolidation opportunity. However enterprises
Virtualizing SQL Server 2008 Using EMC VNX Series and Microsoft Windows Server 2008 R2 Hyper-V. Proven Solution Guide
Virtualizing SQL Server 2008 Using EMC VNX Series and Microsoft Windows Server 2008 R2 Hyper-V Copyright 2011 EMC Corporation. All rights reserved. Published March, 2011 EMC believes the information in
MAXIMIZING AVAILABILITY OF MICROSOFT SQL SERVER 2012 ON VBLOCK SYSTEMS
Maximizing Availability of Microsoft SQL Server 2012 on Vblock Systems Table of Contents www.vce.com MAXIMIZING AVAILABILITY OF MICROSOFT SQL SERVER 2012 ON VBLOCK SYSTEMS January 2013 1 Contents Introduction...4
Oracle 11g Disaster Recovery Solution with VMware Site Recovery Manager and EMC CLARiiON MirrorView/A
Oracle 11g Disaster Recovery Solution with VMware Site Recovery Manager and Applied Technology Abstract This white paper demonstrates how VMware s Site Recovery Manager enables the design of a powerful
EMC MID-RANGE STORAGE AND THE MICROSOFT SQL SERVER I/O RELIABILITY PROGRAM
White Paper EMC MID-RANGE STORAGE AND THE MICROSOFT SQL SERVER I/O RELIABILITY PROGRAM Abstract This white paper explains the integration of EMC Mid-range Storage arrays with the Microsoft SQL Server I/O
HIGHLY AVAILABLE MULTI-DATA CENTER WINDOWS SERVER SOLUTIONS USING EMC VPLEX METRO AND SANBOLIC MELIO 2010
White Paper HIGHLY AVAILABLE MULTI-DATA CENTER WINDOWS SERVER SOLUTIONS USING EMC VPLEX METRO AND SANBOLIC MELIO 2010 Abstract This white paper demonstrates key functionality demonstrated in a lab environment
Best Practices for Deploying SSDs in a Microsoft SQL Server 2008 OLTP Environment with Dell EqualLogic PS-Series Arrays
Best Practices for Deploying SSDs in a Microsoft SQL Server 2008 OLTP Environment with Dell EqualLogic PS-Series Arrays Database Solutions Engineering By Murali Krishnan.K Dell Product Group October 2009
EMC Business Continuity for Microsoft SQL Server 2008
EMC Business Continuity for Microsoft SQL Server 2008 Enabled by EMC Symmetrix V-Max with SRDF/CE, EMC Replication Manager, and Enterprise Flash Drives Reference Architecture Copyright 2009 EMC Corporation.
EMC Virtual Infrastructure for SAP Enabled by EMC Symmetrix with Auto-provisioning Groups, Symmetrix Management Console, and VMware vcenter Converter
EMC Virtual Infrastructure for SAP Enabled by EMC Symmetrix with Auto-provisioning Groups, VMware vcenter Converter A Detailed Review EMC Information Infrastructure Solutions Abstract This white paper
Dell High Availability and Disaster Recovery Solutions Using Microsoft SQL Server 2012 AlwaysOn Availability Groups
Dell High Availability and Disaster Recovery Solutions Using Microsoft SQL Server 2012 AlwaysOn Availability Groups Dell servers and storage options available for AlwaysOn Availability Groups deployment.
Neverfail for Windows Applications June 2010
Neverfail for Windows Applications June 2010 Neverfail, from Neverfail Ltd. (www.neverfailgroup.com), ensures continuity of user services provided by Microsoft Windows applications via data replication
Integrated Application and Data Protection. NEC ExpressCluster White Paper
Integrated Application and Data Protection NEC ExpressCluster White Paper Introduction Critical business processes and operations depend on real-time access to IT systems that consist of applications and
Best practices for fully automated disaster recovery of Microsoft SQL Server 2008 using HP Continuous Access EVA with Cluster Extension EVA
Best practices for fully automated disaster recovery of Microsoft SQL Server 2008 using HP Continuous Access EVA with Cluster Extension EVA Subtitle Table of contents Overview... 2 Key findings... 3 Solution
Eliminate SQL Server Downtime Even for maintenance
Eliminate SQL Server Downtime Even for maintenance Eliminate Outages Enable Continuous Availability of Data (zero downtime) Enable Geographic Disaster Recovery - NO crash recovery 2009 xkoto, Inc. All
Virtualizing SQL Server 2008 Using EMC VNX Series and VMware vsphere 4.1. Proven Solution Guide
Virtualizing SQL Server 2008 Using EMC VNX Series and VMware vsphere 4.1 Copyright 2011, 2012 EMC Corporation. All rights reserved. Published March, 2012 EMC believes the information in this publication
EXCHANGE 2010 DISASTER RECOVERY OPTIONS WITH CROSS-SITE EXCHANGE DAG AND EMC RECOVERPOINT
White Paper EXCHANGE 2010 DISASTER RECOVERY OPTIONS WITH CROSS-SITE EXCHANGE DAG AND EMC RECOVERPOINT A Detailed Review EMC GLOBAL SOLUTIONS Abstract This white paper provides analysis, data points and
Performance Characteristics of VMFS and RDM VMware ESX Server 3.0.1
Performance Study Performance Characteristics of and RDM VMware ESX Server 3.0.1 VMware ESX Server offers three choices for managing disk access in a virtual machine VMware Virtual Machine File System
EMC Virtual Infrastructure for Microsoft Applications Data Center Solution
EMC Virtual Infrastructure for Microsoft Applications Data Center Solution Enabled by EMC Symmetrix V-Max and Reference Architecture EMC Global Solutions Copyright and Trademark Information Copyright 2009
Performance characterization report for Microsoft Hyper-V R2 on HP StorageWorks P4500 SAN storage
Performance characterization report for Microsoft Hyper-V R2 on HP StorageWorks P4500 SAN storage Technical white paper Table of contents Executive summary... 2 Introduction... 2 Test methodology... 3
MS EXCHANGE SERVER ACCELERATION IN VMWARE ENVIRONMENTS WITH SANRAD VXL
MS EXCHANGE SERVER ACCELERATION IN VMWARE ENVIRONMENTS WITH SANRAD VXL Dr. Allon Cohen Eli Ben Namer info@sanrad.com 1 EXECUTIVE SUMMARY SANRAD VXL provides enterprise class acceleration for virtualized
EMC RECOVERPOINT: BUSINESS CONTINUITY FOR SAP ENVIRONMENTS ACROSS DISTANCE
White Paper EMC RECOVERPOINT: BUSINESS CONTINUITY FOR SAP ENVIRONMENTS ACROSS DISTANCE Applied Technology Abstract Business continuity is a critical component of any enterprise data protection strategy
Deploying Exchange Server 2007 SP1 on Windows Server 2008
Deploying Exchange Server 2007 SP1 on Windows Server 2008 Product Group - Enterprise Dell White Paper By Ananda Sankaran Andrew Bachler April 2008 Contents Introduction... 3 Deployment Considerations...
EMC CLARiiON CX3 Series FCP
EMC Solutions for Microsoft SQL Server 2005 on Windows 2003 in VMware ESX Server EMC CLARiiON CX3 Series FCP EMC Global Solutions 42 South Street Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com www.emc.com
Oracle Database Disaster Recovery Using Dell Storage Replication Solutions
Oracle Database Disaster Recovery Using Dell Storage Replication Solutions This paper describes how to leverage Dell storage replication technologies to build a comprehensive disaster recovery solution
Contents. SnapComms Data Protection Recommendations
Contents Abstract... 2 SnapComms Solution Environment... 2 Concepts... 3 What to Protect... 3 Database Failure Scenarios... 3 Physical Infrastructure Failures... 3 Logical Data Failures... 3 Service Recovery
White Paper. Recording Server Virtualization
White Paper Recording Server Virtualization Prepared by: Mike Sherwood, Senior Solutions Engineer Milestone Systems 23 March 2011 Table of Contents Introduction... 3 Target audience and white paper purpose...
Oracle E-Business Suite Disaster Recovery Solution with VMware Site Recovery Manager and EMC CLARiiON
Oracle E-Business Suite Disaster Recovery Solution with VMware Site Recovery Manager and EMC CLARiiON Applied Technology Abstract This white paper demonstrates how VMware s Site Recovery Manager enables
Disaster Recovery for Oracle Database
Disaster Recovery for Oracle Database Zero Data Loss Recovery Appliance, Active Data Guard and Oracle GoldenGate ORACLE WHITE PAPER APRIL 2015 Overview Oracle Database provides three different approaches
EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER
White Paper EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER Abstract The objective of this white paper is to describe the architecture of and procedure for configuring EMC Documentum xplore
EMC Backup and Recovery for Oracle Database 11g Without Hot Backup Mode using DNFS and Automatic Storage Management on Fibre Channel
EMC Backup and Recovery for Oracle Database 11g Without Hot Backup Mode using DNFS and Automatic Storage Management on Fibre Channel A Detailed Review EMC Information Infrastructure Solutions Abstract
IMPROVING VMWARE DISASTER RECOVERY WITH EMC RECOVERPOINT Applied Technology
White Paper IMPROVING VMWARE DISASTER RECOVERY WITH EMC RECOVERPOINT Applied Technology Abstract EMC RecoverPoint provides full support for data replication and disaster recovery for VMware ESX Server
Building the Virtual Information Infrastructure
Technology Concepts and Business Considerations Abstract A virtual information infrastructure allows organizations to make the most of their data center environment by sharing computing, network, and storage
TABLE OF CONTENTS THE SHAREPOINT MVP GUIDE TO ACHIEVING HIGH AVAILABILITY FOR SHAREPOINT DATA. Introduction. Examining Third-Party Replication Models
1 THE SHAREPOINT MVP GUIDE TO ACHIEVING HIGH AVAILABILITY TABLE OF CONTENTS 3 Introduction 14 Examining Third-Party Replication Models 4 Understanding Sharepoint High Availability Challenges With Sharepoint
VMware Site Recovery Manager with EMC RecoverPoint
VMware Site Recovery Manager with EMC RecoverPoint Implementation Guide EMC Global Solutions Centers EMC Corporation Corporate Headquarters Hopkinton MA 01748-9103 1.508.435.1000 www.emc.com Copyright
SAP Solutions on VMware Business Continuance Protecting Against Unplanned Downtime
of SAP Solutions on Vmware vsphere SAP Solutions on VMware Protecting Against Unplanned Downtime This product is protected by U.S. and international copyright and intellectual property laws. This product
EMC BACKUP-AS-A-SERVICE
Reference Architecture EMC BACKUP-AS-A-SERVICE EMC AVAMAR, EMC DATA PROTECTION ADVISOR, AND EMC HOMEBASE Deliver backup services for cloud and traditional hosted environments Reduce storage space and increase
CONFIGURATION GUIDELINES: EMC STORAGE FOR PHYSICAL SECURITY
White Paper CONFIGURATION GUIDELINES: EMC STORAGE FOR PHYSICAL SECURITY DVTel Latitude NVMS performance using EMC Isilon storage arrays Correct sizing for storage in a DVTel Latitude physical security
EMC Virtual Infrastructure for Microsoft Applications Data Center Solution
EMC Virtual Infrastructure for Microsoft Applications Data Center Solution Enabled by EMC Symmetrix V-Max and Reference Architecture EMC Global Solutions Copyright and Trademark Information Copyright 2009
HP ProLiant BL660c Gen9 and Microsoft SQL Server 2014 technical brief
Technical white paper HP ProLiant BL660c Gen9 and Microsoft SQL Server 2014 technical brief Scale-up your Microsoft SQL Server environment to new heights Table of contents Executive summary... 2 Introduction...
Microsoft SQL Server Native High Availability with XtremIO
Microsoft SQL Server Native High Availability with XtremIO Extending Microsoft SQL Server Functionality with the EMC XtremIO Storage Array ABSTRACT This whitepaper examines the storage efficiency and performance
EonStor DS remote replication feature guide
EonStor DS remote replication feature guide White paper Version: 1.0 Updated: Abstract: Remote replication on select EonStor DS storage systems offers strong defense against major disruption to IT continuity,
Improving Microsoft SQL Server Recovery with EMC NetWorker and EMC RecoverPoint
Improving Microsoft SQL Server Recovery with EMC NetWorker and EMC RecoverPoint Applied Technology Abstract This white paper covers how EMC NetWorker and EMC NetWorker modules can be used effectively in
Microsoft SQL Server 2012 on Cisco UCS with iscsi-based Storage Access in VMware ESX Virtualization Environment: Performance Study
White Paper Microsoft SQL Server 2012 on Cisco UCS with iscsi-based Storage Access in VMware ESX Virtualization Environment: Performance Study 2012 Cisco and/or its affiliates. All rights reserved. This
GIVE YOUR ORACLE DBAs THE BACKUPS THEY REALLY WANT
Why Data Domain Series GIVE YOUR ORACLE DBAs THE BACKUPS THEY REALLY WANT Why you should take the time to read this paper Speed up backups (Up to 58.7 TB/hr, Data Domain systems are about 1.5 times faster
Sage 300 2016. Compatibility guide. Last revised: October 26, 2015
Sage 300 2016 Compatibility guide Last revised: October 26, 2015 This is a publication of Sage Software, Inc. Copyright 2015. Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage
Kronos Workforce Central on VMware Virtual Infrastructure
Kronos Workforce Central on VMware Virtual Infrastructure June 2010 VALIDATION TEST REPORT Legal Notice 2010 VMware, Inc., Kronos Incorporated. All rights reserved. VMware is a registered trademark or
SQL Server Consolidation Using Cisco Unified Computing System and Microsoft Hyper-V
SQL Server Consolidation Using Cisco Unified Computing System and Microsoft Hyper-V White Paper July 2011 Contents Executive Summary... 3 Introduction... 3 Audience and Scope... 4 Today s Challenges...
VIDEO SURVEILLANCE WITH SURVEILLUS VMS AND EMC ISILON STORAGE ARRAYS
VIDEO SURVEILLANCE WITH SURVEILLUS VMS AND EMC ISILON STORAGE ARRAYS Successfully configure all solution components Use VMS at the required bandwidth for NAS storage Meet the bandwidth demands of a 2,200
SQL Server AlwaysOn Deep Dive for SharePoint Administrators
SQL Server AlwaysOn Deep Dive for SharePoint Administrators SharePoint Saturday Montréal Edwin Sarmiento 23 mai 2015 SQL Server AlwaysOn Deep Dive for SharePoint Administrators Edwin Sarmiento Microsoft
Informix Dynamic Server May 2007. Availability Solutions with Informix Dynamic Server 11
Informix Dynamic Server May 2007 Availability Solutions with Informix Dynamic Server 11 1 Availability Solutions with IBM Informix Dynamic Server 11.10 Madison Pruet Ajay Gupta The addition of Multi-node
SAP HANA Operation Expert Summit BUILD - High Availability & Disaster Recovery
SAP HANA Operation Expert Summit BUILD - High Availability & Disaster Recovery Dr. Ralf Czekalla/SAP HANA Product Management May 09, 2014 Customer Disclaimer This presentation outlines our general product
Understanding EMC Avamar with EMC Data Protection Advisor
Understanding EMC Avamar with EMC Data Protection Advisor Applied Technology Abstract EMC Data Protection Advisor provides a comprehensive set of features to reduce the complexity of managing data protection
IBM TSM DISASTER RECOVERY BEST PRACTICES WITH EMC DATA DOMAIN DEDUPLICATION STORAGE
White Paper IBM TSM DISASTER RECOVERY BEST PRACTICES WITH EMC DATA DOMAIN DEDUPLICATION STORAGE Abstract This white paper focuses on recovery of an IBM Tivoli Storage Manager (TSM) server and explores
7 Real Benefits of a Virtual Infrastructure
7 Real Benefits of a Virtual Infrastructure Dell September 2007 Even the best run IT shops face challenges. Many IT organizations find themselves with under-utilized servers and storage, yet they need
Ensuring High Availability for Critical Systems and Applications
Ensuring High Availability for Critical Systems and Applications Using SharePlex to Ensure Your Oracle Databases Are Always Up and Running Bill Brunt, Product Manager, Dell Software Abstract Keeping business
Performance Impact on Exchange Latencies During EMC CLARiiON CX4 RAID Rebuild and Rebalancing Processes
Performance Impact on Exchange Latencies During EMC CLARiiON CX4 RAID Rebuild and Applied Technology Abstract This white paper discusses the results of tests conducted in a Microsoft Exchange 2007 environment.
SAP database backup and restore solutions for HP StorageWorks Enterprise Virtual Array using HP Data Protector 6.1 software
SAP database backup and restore solutions for HP StorageWorks Enterprise Virtual Array using HP Data Protector 6.1 software Table of contents Executive summary... 2 Solution overview... 2 Objectives...
Microsoft SQL Server on VMware Availability and Recovery Options
This product is protected by U.S. and international copyright and intellectual property laws. This product is covered by one or more patents listed at http://www.vmware.com/download/patents.html. VMware
HRG Assessment: Stratus everrun Enterprise
HRG Assessment: Stratus everrun Enterprise Today IT executive decision makers and their technology recommenders are faced with escalating demands for more effective technology based solutions while at
Reference Architecture for Dell VIS Self-Service Creator and VMware vsphere 4
Reference Architecture for Dell VIS Self-Service Creator and VMware vsphere 4 Solutions for Large Environments Virtualization Solutions Engineering Ryan Weldon and Tom Harrington THIS WHITE PAPER IS FOR
EMC XtremSF: Delivering Next Generation Performance for Oracle Database
White Paper EMC XtremSF: Delivering Next Generation Performance for Oracle Database Abstract This white paper addresses the challenges currently facing business executives to store and process the growing
The functionality and advantages of a high-availability file server system
The functionality and advantages of a high-availability file server system This paper discusses the benefits of deploying a JMR SHARE High-Availability File Server System. Hardware and performance considerations
DELL. Virtual Desktop Infrastructure Study END-TO-END COMPUTING. Dell Enterprise Solutions Engineering
DELL Virtual Desktop Infrastructure Study END-TO-END COMPUTING Dell Enterprise Solutions Engineering 1 THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES ONLY, AND MAY CONTAIN TYPOGRAPHICAL ERRORS AND TECHNICAL
SAP Disaster Recovery Solution with VMware Site Recovery Manager and EMC CLARiiON
SAP Disaster Recovery Solution with VMware Site Recovery Manager and EMC CLARiiON Applied Technology Abstract This white paper demonstrates how VMware s Site Recovery Manager enables the design of a powerful
Optimized Storage Solution for Enterprise Scale Hyper-V Deployments
Optimized Storage Solution for Enterprise Scale Hyper-V Deployments End-to-End Storage Solution Enabled by Sanbolic Melio FS and LaScala Software and EMC SAN Solutions Proof of Concept Published: March
Virtual SAN Design and Deployment Guide
Virtual SAN Design and Deployment Guide TECHNICAL MARKETING DOCUMENTATION VERSION 1.3 - November 2014 Copyright 2014 DataCore Software All Rights Reserved Table of Contents INTRODUCTION... 3 1.1 DataCore
EMC Disk Library with EMC Data Domain Deployment Scenario
EMC Disk Library with EMC Data Domain Deployment Scenario Best Practices Planning Abstract This white paper is an overview of the EMC Disk Library with EMC Data Domain deduplication storage system deployment
EMC Business Continuity for VMware View Enabled by EMC SRDF/S and VMware vcenter Site Recovery Manager
EMC Business Continuity for VMware View Enabled by EMC SRDF/S and VMware vcenter Site Recovery Manager A Detailed Review Abstract This white paper demonstrates that business continuity can be enhanced
EMC XtremSF: Delivering Next Generation Storage Performance for SQL Server
White Paper EMC XtremSF: Delivering Next Generation Storage Performance for SQL Server Abstract This white paper addresses the challenges currently facing business executives to store and process the growing
How To Live Migrate In Hyperv On Windows Server 22 (Windows) (Windows V) (Hyperv) (Powerpoint) (For A Hyperv Virtual Machine) (Virtual Machine) And (Hyper V) Vhd (Virtual Hard Disk
Poster Companion Reference: Hyper-V Virtual Machine Mobility Live Migration Without Shared Storage Storage Migration Live Migration with SMB Shared Storage Live Migration with Failover Clusters Copyright
Sizing guide for SAP and VMware ESX Server running on HP ProLiant x86-64 platforms
Sizing guide for SAP and VMware ESX Server running on HP ProLiant x86-64 platforms Executive summary... 2 Server virtualization overview... 2 Solution definition...2 SAP architecture... 2 VMware... 3 Virtual
PARALLELS CLOUD STORAGE
PARALLELS CLOUD STORAGE Performance Benchmark Results 1 Table of Contents Executive Summary... Error! Bookmark not defined. Architecture Overview... 3 Key Features... 5 No Special Hardware Requirements...
Navisphere Quality of Service Manager (NQM) Applied Technology
Applied Technology Abstract Navisphere Quality of Service Manager provides quality-of-service capabilities for CLARiiON storage systems. This white paper discusses the architecture of NQM and methods for
Comprehending the Tradeoffs between Deploying Oracle Database on RAID 5 and RAID 10 Storage Configurations. Database Solutions Engineering
Comprehending the Tradeoffs between Deploying Oracle Database on RAID 5 and RAID 10 Storage Configurations A Dell Technical White Paper Database Solutions Engineering By Sudhansu Sekhar and Raghunatha
Delivering Accelerated SQL Server Performance with OCZ s ZD-XL SQL Accelerator
enterprise White Paper Delivering Accelerated SQL Server Performance with OCZ s ZD-XL SQL Accelerator Performance Test Results for Analytical (OLAP) and Transactional (OLTP) SQL Server 212 Loads Allon