Business Continuity Solutions on Dell PowerEdge Servers A White Paper Series for Microsoft SQL Server

Size: px
Start display at page:

Download "Business Continuity Solutions on Dell PowerEdge Servers A White Paper Series for Microsoft SQL Server"

Transcription

1 Business Continuity Solutions on Dell PowerEdge Servers A White Paper Series for Microsoft SQL Server Abstract This white paper is one in a series of Business Continuity papers that describe the various options from Dell and Dell s premier partners such as Microsoft and EMC on how to achieve maximum data availability, protection and integrity for Microsoft SQL Server 2005 databases. April 2008 THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES ONLY, AND MAY CONTAIN TYPOGRAPHICAL ERRORS AND TECHNICAL INACCURACIES. THE CONTENT IS PROVIDED AS IS, WITHOUT EXPRESS OR IMPLIED WARRANTIES OF ANY KIND. 1

2 Microsoft and SQL Server are registered trademarks of Microsoft Corporation. 2

3 Table of Contents INTRODUCTION... 4 Purpose and Scope... 4 SQL SERVER 2005 BUSINESS CONTINUITY OPTIONS:... 4 Log shipping:... 5 Replication:... 6 Clustered SQL Server:... 8 Native Backup and Restore:... 9 Database Mirroring:... 9 CONCLUSION...11 GLOSSARY:...12 REFERENCES

4 Introduction Most of today s business applications are data-centric, requiring fast and reliable access to intelligent information architectures that can often be provided by a high-performance relational database system. Microsoft SQL Server is one among the relational database systems that provides such a back-end data store for mission-critical, line-of-business applications. Microsoft SQL Server 2005 offers significant architectural enhancements in performance, scalability, availability, and security. It is disruptive and expensive when customers, employees, partners, and other stakeholders are adversely affected by database outages. DELL along with Microsoft has extended its reach to increase productivity and keep information close to hand, flexible enough to meet your organization s administrative model. This technical report delivers an overview of how to achieve Business Continuity for Microsoft SQL Server In this series of white papers we will explore the options and techniques available at the database, hardware and storage layers as well as Dell partner software solutions. In addition, the Dell Engineering team will be providing a deep-dive into each of these technologies providing use cases, best practices, manageability, and data protection and how they fit into the Business Continuity model. Purpose and Scope The purpose of this technical report is to provide a summary of the various options and techniques available at the Database layer. We look into each of the features Microsoft has built into the Database engine and how they fit into the business continuity strategy. The target audience is database and systems administrators, decision makers and architects that are beginning to implement a business continuity strategy. SQL Server 2005 Business Continuity Options: Configuring systems to prepare for disaster/recovery and support business continuity is one of the primary considerations when architecting a database solution. With each subsequent release of SQL Server database software, Microsoft is developing new techniques to run business critical applications, uninterrupted, on the SQL Server platform. Early evolutions to support business continuity and disaster recovery were typically clumsy and required an expert to architect, configure, and continually monitor the setup to ensure the DR solution was functioning properly. Prior to SQL Server 2005 architects had four choices to configure a disaster recovery solution: Log Shipping Replication Microsoft Clustering Services (MSCS) Native Backup and Restore However, with the demand for business continuity, Microsoft introduced a new feature in SQL Server 2005; Database Mirroring. This feature enables organizations to meet towering requirements for mission critical databases. These features vary in their RPO, RTO and also vary in their relative complexities and resource needs. The following are the DR features that SQL Server 2005 presents: 4

5 Log shipping: Using log shipping to provide BC and DR is the configuration that requires the least alteration to out of the box operation for the database server. In this configuration the architect is exploiting the standard operation of the database to provide DR. Databases operating normally will write all operations that add, modify, and delete data to the databases transaction log (.ldf) prior to adding, modifying, or deleting the data in the database. The transaction log provides the database with speed and can be used to recover the database with minimal data loss. The architect uses the logs ability to recover the database to keep a near real time copy in a separate location by periodically making a copy of the transaction log and shipping the log file copy to the DR server. The DR server is then able to apply the transaction log copy to keep the database in a near real time state. To simplify the setup and configuration of log shipping, administrators are able to configure the necessary components in a SQL Server Database Maintenance Plan. This tool lets the architect set up the source, shipping location, backup and restore intervals, and alert thresholds for the log shipping. Once the Database Maintenance Plan is completed it will create all corresponding SQL Server Agent Jobs for the log shipping to run successfully. Note that log shipping is a per-database BC solution. Log shipping cannot be used at the instance level. When a standby server is restoring transaction logs, the database is in exclusive mode and it is unusable. However, you can run batch reporting jobs between transaction log restorations or Database Console Commands (DBCC) checks to continuously verify the integrity of the standby server. For applications such as decision support servers that require continuous processing on a database server, log shipping is not an appropriate option. The latency on the standby server is based on how frequently the transaction log backups are taken at the primary server and then applied at the standby server. If the primary server fails, you may lose the changes that were made by the transactions that occurred after your most recent transaction log backup. For example, if transaction log backups are taken every 10 minutes, transactions during the most recent 10 minutes may be lost. This does not necessarily mean that the data updates that are made to the primary server during the latency period will be lost. Typically, new updates in the primary transaction log can be recovered and applied at the warm standby server with only a small delay in switching from the primary server to the standby server. The main purpose of log shipping is to maintain a warm standby server. Advantages and disadvantages of using log shipping Advantages: You can recover all database activities. The recovery includes any objects that were created such as tables and views. It also includes security changes such as the new users who were created and any permission changes. You can restore the database faster. The restoration of the database and the transaction log is based on low-level page formats. Therefore, log shipping speeds up the restoration process and results in the fast recovery of data. Log shipping offers one advantage over database mirroring which explained in the next section: it allows for multiple secondary servers, and any secondary server can be used for reporting. Because of this advantage enterprises can implement log shipping in combination with database mirroring. Minimal alteration from standard database operations Less skill needed to configure or maintain setup Near real time database that can remain secure or can be configured to be opened for queries. Disadvantages: The database is unusable during the restoration process because the database is in exclusive mode on the standby server. 5

6 There is a lack of granularity. During the restoration process, all the changes in the primary server are applied at the standby server. You cannot use log shipping to apply changes to a few tables and to reject the remaining changes There is no automatic failover of applications. When the primary server fails because of a disaster, the standby server does not failover automatically. Therefore, you must explicitly redirect the applications that connect to the primary server to the standby (failover) server. The connecting applications also need to be aware of both the servers involved in the log shipping pair. Requires monitoring of free space on source file system and DR file system for copies of log files on the source and DR Status of copy process is not very robust to report status of copy, restore of logs, or potential failures in the process Configuration highly dependent upon disk space, network bandwidth, etc. In case of missing log files full backup is required to rebuild. Application SQL2005 SQL 2005 Principal Warm Standby Server Log Transaction Log Backup Directory Transaction Log Backup Directory Figure 1: Transaction Log Shipping Replication: Using a Replication solution to accomplish business continuity and disaster recovery is the other database solution available on the SQL Server 2000 platform. Unlike log shipping, replication has many different configurations to choose from to provide data redundancy. Based upon the requirements of the business, and the configuration of the environment, the architect can choose which of the configurations best addresses their requirements. Replication has three main replication configurations: Snapshot Transactional Merge Snapshot replication will take a picture of the database at a point in time and send the data to the DR. This configuration is beneficial for small databases that you do not require to be in a near real time state. 6

7 Transactional replication will take the initial picture of the database, send the data to the DR, and then send individual insert, update, and delete statements from the primary database to the DR through stored procedures configured during setup. Transactional replication will allow for the nearest real time configuration for the DR database. Merge replication takes the picture of the database and sends it to the DR, but they allows the administrator to configure rules to allow updating of data in either the Primary or the DR server. The rules, configured by the administrator, define which data updates take precedence over others. Merge replication is very complex to setup and configure and should be used only when experienced DBA s are on staff and the architecture requires this model. Replication can provide environments near real time DR, but they require thorough understanding of the data for setup and troubleshooting. Advantages: Wizards are in place for guidance through basic configurations Flexible architecture allows for configuration of replication to fit the specific requirements of the data and environment Tools built in to assist in monitoring and troubleshooting of replications Provides near real time DR and allows for a geographically separate DR Disadvantages: Implementation of replication becomes difficult if there is no underlying control on the database architecture (3 rd party applications) Replication configuration or troubleshooting can become complex quickly and requires a DBA expert to resolve. Through understanding of database configuration is required for effective setup of replication solution Very large databases can take large amounts of time to setup or reconfigure, which can translate to no DR for extended periods. 1) Writes to primary Application 3) Reads from primary or secondary 2) Replicate changes to secondary host SQL2005 SQL 2005 Primary Server Secondary Server external storage external storage Figure 2: Peer-to-peer replication with writes to primary 7

8 Clustered SQL Server: Microsoft Clustering Service (MSCS) is a utility provided to assist in disaster recovery and business continuity by enabling administrators to configure the system with redundant resources to be available in the case of a failure. MSCS differs from the previous two solutions because it is configured on the operating system and allows the SQL Server Database Engine program to take advantage of the capabilities of this service. The most common configuration for Microsoft Clustering Service is an Active / Passive configuration which consists of one Active Server taking database transactions and one idle Passive server. The two servers are configured to share the same disk storage for the database, and using continuous internal polling, will determine which of the servers is active and which is passive. In the case of a failure on the active server, no polling response will be returned from the current active server and the cluster will run internal programs and processes to fail over the database and ownership of the disk storage to the passive server. The passive server takes ownership of the disk and then will be able to open up the database to user connections. Once open the node will be able to continue reading from and writing to the same disk media that the original node was writing to. Advantages: Microsoft supported high availability solution (Supported since NT4.0) Minimized downtime due to CPU or memory failures High availability not only for the database, but also the OS and other cluster aware applications Disadvantages: Does not provide true disaster recovery due to the requirement of shared disk on the cluster configuration Requires operating system, hardware, and database knowledge to configure the Microsoft clustering solution. Blocking on the database can be interpreted as unresponsiveness and will cause the cluster to failover the database which can result in unnecessary downtime. Application In the event of failure on primary active node, SQL Server is restarted on the secondary node. SQL2005 SQL2005 MSCS Resource Group Primary Server Heartbeat private interconnect Secondary Server Shared external storage Figure 3: Typical Microsoft Clustering (MSCS) implementation 8

9 Native Backup and Restore: As part of a Business Continuity strategy and to satisfy legal regulations for data retention, regular intervals to backup the database is a fundamental technique. In the event of unrecoverable error, organizations are required to be able to restore critical information. The Backup and Restore feature allows organizations to create copies of their databases and then store them in an external backup location. These backups can be used at a later date to restore lost data. Based on the specific requirements for a particular database, a strategy needs to be architected to meet that criterion. For example, weekly or nightly backups can be implemented, however if any new data that was added to the database after the last backup will be lost in the event of failure. In addition, as databases increase in size so do backup times. This plays a crucial part in deciding which solution to implement. If near real-time or minimal downtime is required, the other solutions listed in this document may provide a suitable solution. Microsoft recommends that you use the Backup and Restore feature only for non-mission-critical database applications. Advantages You can back the database up to removable media to help protect against disk failures. You do not have to depend on the network as you do when you use failover clustering or log shipping. Disadvantages When you back up the database, you cannot perform operations such as table creation, index creation, database shrinking, or non logged operations. If a failure occurs, you may lose your most recent data. If a disaster occurs, you must manually restore the database Database Mirroring: The introduction of SQL Server 2005 brought a new choice for high availability and business continuity. The database mirroring solution was intended to provide another solution to address company s requirements for high availability and disaster recovery for the database that could mimic the capabilities of Microsoft Clustering Solution. Database mirroring was configured to be able to provide this functionality to the database without additional configuration required for the operating system and hardware. Mirroring also allows for true disaster recovery as the databases are on separate servers, in different data centers, running off their own sets of disk media. Database mirroring is similar to log shipping (see previous section) in its mechanism for sending transactions to another database. The difference is that log shipping will batch up a set of transactions and send them to the secondary location to be restored, where mirroring will continuously stream each individual transaction to the DR site. This provides the benefit of a near real time standby server. The database can either be configured for automatic or manual failover. While a DR database is setup as part of a mirror, the database will be in a standby mode to prevent users from tampering with the DR database and to ensure the fastest possible restore time. Users can set up a database snapshot to be able to query the DR for reporting or troubleshooting purposes. The mirror can be configured in three ways: 1. High Safety 2. High Performance 3. Witness role 9

10 The first setting is a high safety setting that will ensure synchronous transfer of data. The transaction is written to the DR before writing it to the primary. The high safety setting can add some transaction time overhead for the write process. The second setting is high performance, which will write the transaction to the primary server and then send it to the DR with the assumption that it was written. This is the fastest setting for write performance, but does not guarantee the transaction was committed to the DR. The third setting will allow for automatic failover but will require a third server to take on the role of a witness to determine if the primary server or the secondary server has ownership. This setting also requires that the mirror adopt the high safety setting of two phase commit to ensure transactions are written to the DR before being committed on the primary server. This will ensure in the case of an automatic failover that your DR is an exact replica of your primary server. Database mirroring is a full HA/BC solution in SQL Server 2005 at the database level. Source and destination SQL Server databases are known as principal and mirror, respectively. Basically, a client interacts with the principal and submits a transaction. The principal writes the requested change to the principal transaction log and automatically transfers the information describing the transaction over to the mirror, where it is written to the mirror transaction log. The mirror then sends an acknowledgement to the principal. The mirror continuously uses the remote transaction log to replicate changes made to the principal database to the mirror database. In case of a disaster the mirror is made live and new connections to the principal get diverted here automatically. Mirroring can be implemented on a per-database basis. Mirroring only works with databases that use the full recovery model. The simple and bulk-logged recovery models do not support database mirroring. Therefore, all bulk operations are always fully logged. Database mirroring works with any supported database compatibility level. Two or three instances of SQL server can leverage the existing infrastructure. Many applications can use of multiple databases on a single server or one application may reference multiple databases however database mirroring works with a single database at a time. Advantage and disadvantages of using database mirroring Advantages Microsoft supported high availability and disaster recovery solution Closest near real time failover of database from primary to DR Setup is configured at database level only and allows for three different setups to help meet business requirements. Database mirroring improves the availability of the production database during upgrades. Disadvantages The mirror database should be identical to the principal database. For example, all objects, logins, and permissions should be identical. Database mirroring involves the transfer of information from one computer to another computer over a network. Therefore, the security of the information that SQL Server transfers is very important High safety setting requires network overhead and can slow database write performance Can require an additional server resource if automatic failover is configured. DR database is closed to user connections and requires a database snapshot to create a read copy of DR to read the content 10

11 Application SQL2005 SQL 2005 Principal Mirror Witness (optional) Figure 4: Typical Implementation of Database mirroring Conclusion This paper summarizes the various solutions from Microsoft SQL Server 2005 to achieve business continuity at the database layer. Depending on data protection requirements and availability, any of these solutions or a combination of them can be implemented as part of the enterprise strategy. For instance, Log Shipping can be supplemental to Database Mirroring 1 to provide maximum protection in the event of unplanned downtime. In addition, Dell recommends implementing a DR strategy at every level of the solution stack. The complete business continuity strategy should include high availability at the database, hardware and storage layers. As well as planning for downtime and methods for backup and recovery of the data. Along with premier partners such as EMC and Microsoft, DELL offers services and reference architectures with best practices such as redundant components and storage RAID to help customers achieve maximum business continuity. The following table presents a comparison of the Microsoft SQL Server 2005 options. Feature Automatic Failover Ease of Configuration Granularity of Recovery Backup and Log Shipping Replication Failover Data Base Restore Clustering Mirroring No No No Yes Yes Easy Easy Medium hard Hard Medium Database Database Database object SQL Server Instance Database 1 Database Mirroring and Log Shipping Working Together, SQL Server Best Practices Article, Jan

12 RPO RTO Administrative Overhead Data loss up to last backup copy Time taken for database recovery depends on size Maintain backups and manual restores Possible data loss Time taken for database recovery Minimal Some data loss is possible May run into minutes May get involved in case of complex publishersubscriber scenarios No data loss seconds plus time taken to recover databases Maintaining cluster hardware No data loss <3 seconds Checking mirror status Glossary: Recovery Time objective (RTO): The maximum time an outage can be tolerated is referred to as recovery time objective. Recovery Point objective (RPO): The amount of data loss that can be tolerated is referred as recovery point objective. Transaction log: The transaction log is a serial record of all the transactions that have been performed against the database since the transaction log was last backed up. Business Continuity: Business continuance (referred to as business continuity) describes the process and procedures an organization puts in place to ensure that essential functions can continue during and after a disaster. Business continuity planning seeks to prevent disruption of mission-critical services and to reinstate full functioning, quickly and efficiently. Business continuity is not a specific technology and should integrate a variety of strategies and technologies to address all potential causes of outage, balancing cost vs. acceptable risk, resulting in a resilient infrastructure. As a first step in business continuity, high-availability planning is deciding which of the organization s functions are essential to be available and operational during a crisis. Once the crucial/mission-critical components are identified, it is essential to identify your RPO and RTO objectives for the identified crucial/mission-critical apportioning in terms of cost and acceptable risk. To appropriately architect a disaster recovery solution, one must be familiar with the following terms. Availability Generally, a degree to which a system, subsystem, service, or equipment is in an operable state for a proportion of time in a functional condition. It refers to the ability of the user community to access the system. Disaster Recovery (DR) A process of regaining access to the data, hardware, and software is necessary to resume critical business operations after a disaster. A disaster recovery plan should also include methods or plans of copying necessary mission-critical data to a recovery site to regain access to such mission-critical data after a disaster. High Availability (HA) A system design protocol and associated implementation that ensure a certain absolute degree of operational continuity of a system, service, or equipment during a given measurement period. 12

13 High-availability planning should include strategies to prevent single points of failure that could potentially disrupt the availability of mission-critical business operations. References DELL Database Solutions DELL Services Database Mirroring and Log Shipping Working Together, Jan Best Practices for Backup and Restore in SQL Server pdf SQL Server 2005 Mission Critical High Availability SQL Server 2005 DR Options: 13

High Availability and Disaster Recovery for Exchange Servers Through a Mailbox Replication Approach

High Availability and Disaster Recovery for Exchange Servers Through a Mailbox Replication Approach High Availability and Disaster Recovery for Exchange Servers Through a Mailbox Replication Approach Introduction Email is becoming ubiquitous and has become the standard tool for communication in many

More information

Microsoft SharePoint 2010 on VMware Availability and Recovery Options. Microsoft SharePoint 2010 on VMware Availability and Recovery Options

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

More information

Deploying Exchange Server 2007 SP1 on Windows Server 2008

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...

More information

EMC Business Continuity for Microsoft SQL Server Enabled by SQL DB Mirroring Celerra Unified Storage Platforms Using iscsi

EMC Business Continuity for Microsoft SQL Server Enabled by SQL DB Mirroring Celerra Unified Storage Platforms Using iscsi 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

More information

NetApp Disaster Recovery Solution for Microsoft SQL Server 2005 User Databases September 2007 TR 3604

NetApp Disaster Recovery Solution for Microsoft SQL Server 2005 User Databases September 2007 TR 3604 NetApp Disaster Recovery Solution for Microsoft SQL Server 2005 User Databases Amarnath Rampratap, Sourav Chakraborthy, Network Appliance, Inc. September 2007 TR 3604 1 of 16 Table of Contents INTRODUCTION

More information

Contents. SnapComms Data Protection Recommendations

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

More information

Integrated Application and Data Protection. NEC ExpressCluster White Paper

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

More information

Administering a Microsoft SQL Server 2000 Database

Administering a Microsoft SQL Server 2000 Database Aug/12/2002 Page 1 of 5 Administering a Microsoft SQL Server 2000 Database Catalog No: RS-MOC2072 MOC Course Number: 2072 5 days Tuition: $2,070 Introduction This course provides students with the knowledge

More information

High Availability with Postgres Plus Advanced Server. An EnterpriseDB White Paper

High Availability with Postgres Plus Advanced Server. An EnterpriseDB White Paper High Availability with Postgres Plus Advanced Server An EnterpriseDB White Paper For DBAs, Database Architects & IT Directors December 2013 Table of Contents Introduction 3 Active/Passive Clustering 4

More information

Administering a Microsoft SQL Server 2000 Database

Administering a Microsoft SQL Server 2000 Database Administering a Microsoft SQL Server 2000 Database Elements of this syllabus are subject to change. Key Data Course #: 2072A Number of Days: 5 Format: Instructor-Led Certification Exams: 70-228: System

More information

Availability Guide for Deploying SQL Server on VMware vsphere. August 2009

Availability Guide for Deploying SQL Server on VMware vsphere. August 2009 Availability Guide for Deploying SQL Server on VMware vsphere August 2009 Contents Introduction...1 SQL Server 2008 with vsphere and VMware HA/DRS...2 Log Shipping Availability Option...4 Database Mirroring...

More information

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 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

More information

Informix Dynamic Server May 2007. Availability Solutions with Informix Dynamic Server 11

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

More information

Administering a Microsoft SQL Server 2000 Database

Administering a Microsoft SQL Server 2000 Database Administering a Microsoft SQL Server 2000 Database Course 2072 - Five days - Instructor-led - Hands-On Introduction This course provides students with the knowledge and skills required to install, configure,

More information

DeltaV Virtualization High Availability and Disaster Recovery

DeltaV Virtualization High Availability and Disaster Recovery DeltaV Distributed Control System Whitepaper October 2014 DeltaV Virtualization High Availability and Disaster Recovery This document describes High Availiability and Disaster Recovery features supported

More information

CA Cloud Overview Benefits of the Hyper-V Cloud

CA Cloud Overview Benefits of the Hyper-V Cloud Benefits of the Hyper-V Cloud For more information, please contact: Email: sales@canadianwebhosting.com Ph: 888-821-7888 Canadian Web Hosting (www.canadianwebhosting.com) is an independent company, hereinafter

More information

Explain how to prepare the hardware and other resources necessary to install SQL Server. Install SQL Server. Manage and configure SQL Server.

Explain how to prepare the hardware and other resources necessary to install SQL Server. Install SQL Server. Manage and configure SQL Server. Course 6231A: Maintaining a Microsoft SQL Server 2008 Database About this Course Elements of this syllabus are subject to change. This five-day instructor-led course provides students with the knowledge

More information

EMC NETWORKER SNAPSHOT MANAGEMENT

EMC NETWORKER SNAPSHOT MANAGEMENT White Paper Abstract This white paper describes the benefits of NetWorker Snapshot Management for EMC Arrays. It also explains the value of using EMC NetWorker for snapshots and backup. June 2013 Copyright

More information

Course Syllabus. At Course Completion

Course Syllabus. At Course Completion Key Data Product #: Course #: 6231A Number of Days: 5 Format: Certification Exams: 70-432, 70-433 Instructor-Led This course syllabus should be used to determine whether the course is appropriate for the

More information

Microsoft SQL Server 2008R2 Mirroring

Microsoft SQL Server 2008R2 Mirroring Microsoft SQL Server 2008R2 Mirroring CONFIGURING SQL SERVER 2008 R2 MIRRORING Authored by: AVINASH KUMAR SINGH COMPANY: PAXCEL TECHNOLOGIES PVT.LTD SQL SERVER HIGH AVAILABLITY SOLUTIONS SQL SERVER DATABASE

More information

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 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.

More information

Appendix A Core Concepts in SQL Server High Availability and Replication

Appendix A Core Concepts in SQL Server High Availability and Replication Appendix A Core Concepts in SQL Server High Availability and Replication Appendix Overview Core Concepts in High Availability Core Concepts in Replication 1 Lesson 1: Core Concepts in High Availability

More information

Disaster Recovery Solutions for Oracle Database Standard Edition RAC. A Dbvisit White Paper

Disaster Recovery Solutions for Oracle Database Standard Edition RAC. A Dbvisit White Paper Disaster Recovery Solutions for Oracle Database Standard Edition RAC A Dbvisit White Paper Copyright 2011-2012 Dbvisit Software Limited. All Rights Reserved v2, Mar 2012 Contents Executive Summary... 1

More information

Eliminate SQL Server Downtime Even for maintenance

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

More information

Online Transaction Processing in SQL Server 2008

Online Transaction Processing in SQL Server 2008 Online Transaction Processing in SQL Server 2008 White Paper Published: August 2007 Updated: July 2008 Summary: Microsoft SQL Server 2008 provides a database platform that is optimized for today s applications,

More information

Maintaining a Microsoft SQL Server 2008 Database

Maintaining a Microsoft SQL Server 2008 Database Maintaining a Microsoft SQL Server 2008 Database Course 6231A: Five days; Instructor-Led Introduction Elements of this syllabus are subject to change. This five-day instructor-led course provides students

More information

Administering and Managing Log Shipping

Administering and Managing Log Shipping 26_0672329565_ch20.qxd 9/7/07 8:37 AM Page 721 CHAPTER 20 Administering and Managing Log Shipping Log shipping is one of four SQL Server 2005 high-availability alternatives. Other SQL Server 2005 high-availability

More information

Business Continuity: Choosing the Right Technology Solution

Business Continuity: Choosing the Right Technology Solution Business Continuity: Choosing the Right Technology Solution Table of Contents Introduction 3 What are the Options? 3 How to Assess Solutions 6 What to Look for in a Solution 8 Final Thoughts 9 About Neverfail

More information

Blackboard Managed Hosting SM Disaster Recovery Planning Document

Blackboard Managed Hosting SM Disaster Recovery Planning Document BLACKBOARD MANAGED HOSTING Blackboard Managed Hosting SM Disaster Recovery Planning Document Prepared By: MH Services Modified Date: March 2009 Revision: 1.8 1. OBJECTIVES... 3 2. SCOPE... 3 3. ASSUMPTIONS...

More information

OVERVIEW. CEP Cluster Server is Ideal For: First-time users who want to make applications highly available

OVERVIEW. CEP Cluster Server is Ideal For: First-time users who want to make applications highly available Phone: (603)883-7979 sales@cepoint.com Cepoint Cluster Server CEP Cluster Server turnkey system. ENTERPRISE HIGH AVAILABILITY, High performance and very reliable Super Computing Solution for heterogeneous

More information

A SURVEY OF POPULAR CLUSTERING TECHNOLOGIES

A SURVEY OF POPULAR CLUSTERING TECHNOLOGIES A SURVEY OF POPULAR CLUSTERING TECHNOLOGIES By: Edward Whalen Performance Tuning Corporation INTRODUCTION There are a number of clustering products available on the market today, and clustering has become

More information

Non-Native Options for High Availability

Non-Native Options for High Availability The Essentials Series: Configuring High Availability for Windows Server 2008 Environments Non-Native Options for High Availability by Non-Native Options for High Availability... 1 Suitability and Cost...

More information

Protecting Microsoft SQL Server with an Integrated Dell / CommVault Solution. Database Solutions Engineering

Protecting Microsoft SQL Server with an Integrated Dell / CommVault Solution. Database Solutions Engineering Protecting Microsoft SQL Server with an Integrated Dell / CommVault Solution Database Solutions Engineering By Subhashini Prem and Leena Kushwaha Dell Product Group March 2009 THIS WHITE PAPER IS FOR INFORMATIONAL

More information

Course 2788A: Designing High Availability Database Solutions Using Microsoft SQL Server 2005

Course 2788A: Designing High Availability Database Solutions Using Microsoft SQL Server 2005 Course Syllabus Course 2788A: Designing High Availability Database Solutions Using Microsoft SQL Server 2005 About this Course Elements of this syllabus are subject to change. This three-day instructor-led

More information

W H I T E P A P E R. Disaster Recovery Virtualization Protecting Production Systems Using VMware Virtual Infrastructure and Double-Take

W H I T E P A P E R. Disaster Recovery Virtualization Protecting Production Systems Using VMware Virtual Infrastructure and Double-Take W H I T E P A P E R Protecting Production Systems Using VMware Virtual Infrastructure and Double-Take Contents Introduction...1 What is VMware Infrastructure?...1 What is Double-Take?...1 Data Protection

More information

SQL Server for Database Administrators Course Syllabus

SQL Server for Database Administrators Course Syllabus SQL Server for Database Administrators Course Syllabus 1. Description This course teaches the administration and maintenance aspects of Microsoft SQL Server. It covers all the roles performed by administrative

More information

Technical Considerations in a Windows Server Environment

Technical Considerations in a Windows Server Environment Technical Considerations in a Windows Server Environment INTRODUCTION Cloud computing has changed the economics of disaster recovery and business continuity options. Accordingly, it is time many organizations

More information

VMware vsphere Data Protection 6.1

VMware vsphere Data Protection 6.1 VMware vsphere Data Protection 6.1 Technical Overview Revised August 10, 2015 Contents Introduction... 3 Architecture... 3 Deployment and Configuration... 5 Backup... 6 Application Backup... 6 Backup Data

More information

Disaster Recovery with EonStor DS Series &VMware Site Recovery Manager

Disaster Recovery with EonStor DS Series &VMware Site Recovery Manager Disaster Recovery with EonStor DS Series &VMware Site Recovery Manager Application Note Version: 1.0 Updated: July, 2015 Abstract: This application note provides information about Infortrend Storage Replication

More information

End-to-End Availability for Microsoft SQL Server

End-to-End Availability for Microsoft SQL Server WHITE PAPER VERITAS Storage Foundation HA for Windows End-to-End Availability for Microsoft SQL Server January 2005 1 Table of Contents Executive Summary... 1 Overview... 1 The VERITAS Solution for SQL

More information

Microsoft SQL Server 2005 Database Mirroring

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.

More information

TABLE OF CONTENTS THE SHAREPOINT MVP GUIDE TO ACHIEVING HIGH AVAILABILITY FOR SHAREPOINT DATA. Introduction. Examining Third-Party Replication Models

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

More information

SQL Server AlwaysOn Deep Dive for SharePoint Administrators

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

More information

Leveraging Virtualization for Disaster Recovery in Your Growing Business

Leveraging Virtualization for Disaster Recovery in Your Growing Business Leveraging Virtualization for Disaster Recovery in Your Growing Business Contents What is Disaster Recovery?..................................... 2 Leveraging Virtualization to Significantly Improve Disaster

More information

Vess A2000 Series HA Surveillance with Milestone XProtect VMS Version 1.0

Vess A2000 Series HA Surveillance with Milestone XProtect VMS Version 1.0 Vess A2000 Series HA Surveillance with Milestone XProtect VMS Version 1.0 2014 PROMISE Technology, Inc. All Rights Reserved. Contents Introduction 1 Purpose 1 Scope 1 Audience 1 What is High Availability?

More information

ABSTRACT. February, 2014 EMC WHITE PAPER

ABSTRACT. February, 2014 EMC WHITE PAPER EMC APPSYNC SOLUTION FOR MANAGING PROTECTION OF MICROSOFT SQL SERVER SLA-DRIVEN, SELF-SERVICE CAPABILITIES FOR MAXIMIZING AND SIMPLIFYING DATA PROTECTION AND RECOVERABILITY ABSTRACT With Microsoft SQL

More information

EMC Data Domain Boost for Oracle Recovery Manager (RMAN)

EMC Data Domain Boost for Oracle Recovery Manager (RMAN) White Paper EMC Data Domain Boost for Oracle Recovery Manager (RMAN) Abstract EMC delivers Database Administrators (DBAs) complete control of Oracle backup, recovery, and offsite disaster recovery with

More information

High Availability and Disaster Recovery Solutions for Perforce

High Availability and Disaster Recovery Solutions for Perforce High Availability and Disaster Recovery Solutions for Perforce This paper provides strategies for achieving high Perforce server availability and minimizing data loss in the event of a disaster. Perforce

More information

SQL SERVER ADVANCED PROTECTION AND FAST RECOVERY WITH DELL EQUALLOGIC AUTO SNAPSHOT MANAGER

SQL SERVER ADVANCED PROTECTION AND FAST RECOVERY WITH DELL EQUALLOGIC AUTO SNAPSHOT MANAGER WHITE PAPER SQL SERVER ADVANCED PROTECTION AND FAST RECOVERY WITH DELL EQUALLOGIC AUTO SNAPSHOT MANAGER Business critical applications depend on Relational Database Management Systems (RMS) to store and

More information

Release Notes. LiveVault. Contents. Version 7.65. Revision 0

Release Notes. LiveVault. Contents. Version 7.65. Revision 0 R E L E A S E N O T E S LiveVault Version 7.65 Release Notes Revision 0 This document describes new features and resolved issues for LiveVault 7.65. You can retrieve the latest available product documentation

More information

Module 14: Scalability and High Availability

Module 14: Scalability and High Availability Module 14: Scalability and High Availability Overview Key high availability features available in Oracle and SQL Server Key scalability features available in Oracle and SQL Server High Availability High

More information

SanDisk ION Accelerator High Availability

SanDisk ION Accelerator High Availability WHITE PAPER SanDisk ION Accelerator High Availability 951 SanDisk Drive, Milpitas, CA 95035 www.sandisk.com Table of Contents Introduction 3 Basics of SanDisk ION Accelerator High Availability 3 ALUA Multipathing

More information

Reducing the Cost and Complexity of Business Continuity and Disaster Recovery for Email

Reducing the Cost and Complexity of Business Continuity and Disaster Recovery for Email Reducing the Cost and Complexity of Business Continuity and Disaster Recovery for Email Harnessing the Power of Virtualization with an Integrated Solution Based on VMware vsphere and VMware Zimbra WHITE

More information

Windows Geo-Clustering: SQL Server

Windows Geo-Clustering: SQL Server Windows Geo-Clustering: SQL Server Edwin Sarmiento, Microsoft SQL Server MVP, Microsoft Certified Master Contents Introduction... 3 The Business Need for Geo-Clustering... 3 Single-location Clustering

More information

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 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

More information

High Availability Essentials

High Availability Essentials High Availability Essentials Introduction Ascent Capture s High Availability Support feature consists of a number of independent components that, when deployed in a highly available computer system, result

More information

Neverfail for Windows Applications June 2010

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

More information

The Benefits of Virtualizing

The Benefits of Virtualizing T E C H N I C A L B R I E F The Benefits of Virtualizing Aciduisismodo Microsoft SQL Dolore Server Eolore in Dionseq Hitachi Storage Uatummy Environments Odolorem Vel Leveraging Microsoft Hyper-V By Heidi

More information

Designing, Optimizing and Maintaining a Database Administrative Solution for Microsoft SQL Server 2008

Designing, Optimizing and Maintaining a Database Administrative Solution for Microsoft SQL Server 2008 Course 50400A: Designing, Optimizing and Maintaining a Database Administrative Solution for Microsoft SQL Server 2008 Length: 5 Days Language(s): English Audience(s): IT Professionals Level: 300 Technology:

More information

AppSense Environment Manager. Enterprise Design Guide

AppSense Environment Manager. Enterprise Design Guide Enterprise Design Guide Contents Introduction... 3 Document Purpose... 3 Basic Architecture... 3 Common Components and Terminology... 4 Best Practices... 5 Scalability Designs... 6 Management Server Scalability...

More information

High Availability for Citrix XenApp

High Availability for Citrix XenApp WHITE PAPER Citrix XenApp High Availability for Citrix XenApp Enhancing XenApp Availability with NetScaler Reference Architecture www.citrix.com Contents Contents... 2 Introduction... 3 Desktop Availability...

More information

SQL Server Database Administrator s Guide

SQL Server Database Administrator s Guide SQL Server Database Administrator s Guide Copyright 2011 Sophos Limited. All rights reserved. No part of this publication may be reproduced, stored in retrieval system, or transmitted, in any form or by

More information

QuickStart Guide vcenter Server Heartbeat 5.5 Update 2

QuickStart Guide vcenter Server Heartbeat 5.5 Update 2 vcenter Server Heartbeat 5.5 Update 2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent

More information

MANAGED DATABASE SOLUTIONS

MANAGED DATABASE SOLUTIONS Page 0 2015 SOLUTION BRIEF MANAGED DATABASE SOLUTIONS NET ACCESS LLC 9 Wing Drive Cedar Knolls, NJ 07927 www.nac.net Page 1 Table of Contents 1. Introduction... 2 2. Net Access Managed Services Solution

More information

Ingres Replicated High Availability Cluster

Ingres Replicated High Availability Cluster Ingres High Availability Cluster The HA Challenge True HA means zero total outages Businesses require flexibility, scalability and manageability in their database architecture & often a Single Point of

More information

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 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

More information

Access to easy-to-use tools that reduce management time with Arcserve Backup

Access to easy-to-use tools that reduce management time with Arcserve Backup Access to easy-to-use tools that reduce management time with Arcserve Backup In business, evolution is constant. Staff grows. New offices spring up. New applications are being implemented, and typically,

More information

SnapManager 1.0 for Virtual Infrastructure Best Practices

SnapManager 1.0 for Virtual Infrastructure Best Practices NETAPP TECHNICAL REPORT SnapManager 1.0 for Virtual Infrastructure Best Practices John Lockyer, NetApp January 2009 TR-3737 LEVERAGING NETAPP DATA ONTAP FOR VMWARE BACKUP, RESTORE, AND DISASTER RECOVERY

More information

be architected pool of servers reliability and

be architected pool of servers reliability and TECHNICAL WHITE PAPER GRIDSCALE DATABASE VIRTUALIZATION SOFTWARE FOR MICROSOFT SQL SERVER Typical enterprise applications are heavily reliant on the availability of data. Standard architectures of enterprise

More information

Course Syllabus. Maintaining a Microsoft SQL Server 2005 Database. At Course Completion

Course Syllabus. Maintaining a Microsoft SQL Server 2005 Database. At Course Completion Course Syllabus Maintaining a Microsoft SQL Server 2005 Database Elements of this syllabus are subject to change. This five-day instructor-led course provides students with the knowledge and skills to

More information

MySQL Enterprise Backup

MySQL Enterprise Backup MySQL Enterprise Backup Fast, Consistent, Online Backups A MySQL White Paper February, 2011 2011, Oracle Corporation and/or its affiliates Table of Contents Introduction... 3! Database Backup Terms...

More information

Mission-Critical Fault Tolerance for Financial Transaction Processing

Mission-Critical Fault Tolerance for Financial Transaction Processing W H I T E P A P E R Mission-Critical Fault Tolerance for Financial Transaction Processing Windows-based payments solutions from ACI and Stratus deliver mainframe-class uptime assurance Uptime. All the

More information

Dell High Availability Solutions Guide for Microsoft Hyper-V

Dell High Availability Solutions Guide for Microsoft Hyper-V Dell High Availability Solutions Guide for Microsoft Hyper-V www.dell.com support.dell.com Notes and Cautions NOTE: A NOTE indicates important information that helps you make better use of your computer.

More information

MS-50400 - Design, Optimize and Maintain Database for Microsoft SQL Server 2008

MS-50400 - Design, Optimize and Maintain Database for Microsoft SQL Server 2008 MS-50400 - Design, Optimize and Maintain Database for Microsoft SQL Server 2008 Table of Contents Introduction Audience At Completion Prerequisites Microsoft Certified Professional Exams Student Materials

More information

SQL Server Training Course Content

SQL Server Training Course Content SQL Server Training Course Content SQL Server Training Objectives Installing Microsoft SQL Server Upgrading to SQL Server Management Studio Monitoring the Database Server Database and Index Maintenance

More information

The functionality and advantages of a high-availability file server system

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

More information

Pervasive PSQL Meets Critical Business Requirements

Pervasive PSQL Meets Critical Business Requirements Pervasive PSQL Meets Critical Business Requirements Pervasive PSQL White Paper May 2012 Table of Contents Introduction... 3 Data Backup... 3 Pervasive Backup Agent... 3 Pervasive PSQL VSS Writer... 5 Pervasive

More information

Disaster Recovery for Oracle Database

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

More information

Backups and Maintenance

Backups and Maintenance Backups and Maintenance Backups and Maintenance Objectives Learn how to create a backup strategy to suit your needs. Learn how to back up a database. Learn how to restore from a backup. Use the Database

More information

SnapManager 5.0 for Microsoft Exchange Best Practices Guide

SnapManager 5.0 for Microsoft Exchange Best Practices Guide NETAPP TECHNICAL REPORT SnapManager 5.0 for Microsoft Exchange s Guide Shannon Flynn, NetApp November 2008 TR-3730 Table of Contents 1 EXECUTIVE SUMMARY... 3 1.1 PURPOSE AND SCOPE... 3 1.2 INTENDED AUDIENCE...

More information

Oracle Database Disaster Recovery Using Dell Storage Replication Solutions

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

More information

EMC Virtual Infrastructure for Microsoft SQL Server

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

More information

HP Data Protector software Zero Downtime Backup and Instant Recovery. Data sheet

HP Data Protector software Zero Downtime Backup and Instant Recovery. Data sheet HP Data Protector software Zero Downtime Backup and Instant Recovery Data sheet Business uninterrupted with HP Data Protector Zero Downtime Backup and Instant Recovery software With today s increasing

More information

Performance Monitoring AlwaysOn Availability Groups. Anthony E. Nocentino aen@centinosystems.com

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

More information

SQL Server AlwaysOn (HADRON)

SQL Server AlwaysOn (HADRON) SQL Server AlwaysOn (HADRON) 朱 桦 Technical Leader, Microsoft Database Support Team Microsoft Public - See Terms of Use 2 Windows Server Failover Clustering (WSFC) Shared Data Disk Multi-node w/shared Data

More information

Data Protection with IBM TotalStorage NAS and NSI Double- Take Data Replication Software

Data Protection with IBM TotalStorage NAS and NSI Double- Take Data Replication Software Data Protection with IBM TotalStorage NAS and NSI Double- Take Data Replication September 2002 IBM Storage Products Division Raleigh, NC http://www.storage.ibm.com Table of contents Introduction... 3 Key

More information

E-Series. NetApp E-Series Storage Systems Mirroring Feature Guide. NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S.

E-Series. NetApp E-Series Storage Systems Mirroring Feature Guide. NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. E-Series NetApp E-Series Storage Systems Mirroring Feature Guide NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1 (408) 822-6000 Fax: +1 (408) 822-4501 Support telephone: +1 (888)

More information

Zerto Virtual Manager Administration Guide

Zerto Virtual Manager Administration Guide Zerto Virtual Manager Administration Guide AWS Environment ZVR-ADVA-4.0U2-01-23-07-15 Copyright 2015, Zerto Ltd. All rights reserved. Information in this document is subject to change without notice and

More information

Rajesh Gupta Best Practices for SAP BusinessObjects Backup & Recovery Including High Availability and Disaster Recovery Session #2747

Rajesh Gupta Best Practices for SAP BusinessObjects Backup & Recovery Including High Availability and Disaster Recovery Session #2747 Rajesh Gupta Best Practices for SAP BusinessObjects Backup & Recovery Including High Availability and Disaster Recovery Session #2747 Introduction Rajesh Gupta - rajgupta@deloitte.com Solution Network

More information

6231A - Maintaining a Microsoft SQL Server 2008 Database

6231A - Maintaining a Microsoft SQL Server 2008 Database 6231A - Maintaining a Microsoft SQL Server 2008 Database Course Number: 6231A Course Length: 5 Days Certification Exam This course will help you prepare for the following Microsoft Certified Professional

More information

EMC Celerra Unified Storage Platforms

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

More information

HA / DR Jargon Buster High Availability / Disaster Recovery

HA / DR Jargon Buster High Availability / Disaster Recovery HA / DR Jargon Buster High Availability / Disaster Recovery Welcome to Maxava s Jargon Buster. Your quick reference guide to Maxava HA and industry technical terms related to High Availability and Disaster

More information

SQL-BackTrack the Smart DBA s Power Tool for Backup and Recovery

SQL-BackTrack the Smart DBA s Power Tool for Backup and Recovery SQL-BackTrack the Smart DBA s Power Tool for Backup and Recovery by Diane Beeler, Consulting Product Marketing Manager, BMC Software and Mati Pitkanen, SQL-BackTrack for Oracle Product Manager, BMC Software

More information

Fault Tolerant Servers: The Choice for Continuous Availability

Fault Tolerant Servers: The Choice for Continuous Availability Fault Tolerant Servers: The Choice for Continuous Availability This paper discusses today s options for achieving continuous availability and how NEC s Express5800/ft servers can provide every company

More information

Course. Overview. Length: 5 Day(s) Published: English. IT Professionals. Level: Type: Method: Delivery. Enroll now (CAL)

Course. Overview. Length: 5 Day(s) Published: English. IT Professionals. Level: Type: Method: Delivery. Enroll now (CAL) Maintaining a Microsoft SQL Server 2008 Database Course 6231A: 5 days; Instructor-Led Length: Published: Language(s): Audience(s): Level: Technology: Type: 5 Day(s) December 09, 2008 (in development) English

More information

Deploy App Orchestration 2.6 for High Availability and Disaster Recovery

Deploy App Orchestration 2.6 for High Availability and Disaster Recovery Deploy App Orchestration 2.6 for High Availability and Disaster Recovery Qiang Xu, Cloud Services Nanjing Team Last Updated: Mar 24, 2015 Contents Introduction... 2 Process Overview... 3 Before you begin...

More information

Veritas Storage Foundation High Availability for Windows by Symantec

Veritas Storage Foundation High Availability for Windows by Symantec Veritas Storage Foundation High Availability for Windows by Symantec Simple-to-use solution for high availability and disaster recovery of businesscritical Windows applications Data Sheet: High Availability

More information

Huawei OceanStor Backup Software Technical White Paper for NetBackup

Huawei OceanStor Backup Software Technical White Paper for NetBackup Huawei OceanStor Backup Software Technical White Paper for NetBackup Huawei Page 1 of 14 Copyright Huawei. 2014. All rights reserved. No part of this document may be reproduced or transmitted in any form

More information

Symantec Storage Foundation High Availability for Windows

Symantec Storage Foundation High Availability for Windows Symantec Storage Foundation High Availability for Windows Storage management, high availability and disaster recovery for physical and virtual Windows applications Data Sheet: High Availability Overview

More information

NEC Corporation of America Intro to High Availability / Fault Tolerant Solutions

NEC Corporation of America Intro to High Availability / Fault Tolerant Solutions NEC Corporation of America Intro to High Availability / Fault Tolerant Solutions 1 NEC Corporation Technology solutions leader for 100+ years Established 1899, headquartered in Tokyo First Japanese joint

More information