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

Size: px
Start display at page:

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

Transcription

1 1

2 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 15 Conclusion 5 Exploring Native High Availability Options With Sharepoint 16 About The Author 8 Using New SQL Server 2012 High Availability Options Such As Alwayson Availability Groups For Sharepoint 17 About Metalogix 2

3 1 THE SHAREPOINT MVP GUIDE TO ACHIEVING HIGH AVAILABILITY INTRODUCTION While the growth of SharePoint has broken down communication and collaboration barriers across the world, it has also exposed a major infrastructure challenge within the application the lack of a two-way data replication engine built into the tool. Because of this, organizations are faced with a choice either centralize their SharePoint data and have users access it across high-latency or low bandwidth links, or deal with a decentralized SharePoint content structure. While the first option degrades performance, the second often results in the duplication of data, outdated content, slow end-user performance, operations outages, regulatory risks, and discontented users. This ebook examines the various approaches taken by organizations as they endeavor to deal with the explosion of SharePoint content. We ll also explore content distribution options that ensure users experience real-time, up-to-date content in the most reliable, efficient manner. Finally, we ll take a look at some of the native out of the box Microsoft options, including those provided within SQL Server 2014, and compare these to third-party replication approaches. 3

4 THE 1SHAREPOINT MVP GUIDE TO ACHIEVING HIGH AVAILABILITY UNDERSTANDING SHAREPOINT HIGH AVAILABILITY CHALLENGES WITH SHAREPOINT SharePoint products and technologies have fast become a preferred method for advanced document management and a mission-critical application for full enterprise collaboration. As such, IT leaders, stakeholders and users expect fault tolerance and high availability as standard. However, the complexity and various operational tiers within SharePoint present several challenges to achieving this state. Building redundancy into SharePoint hardware alone does not ensure high availability, the SharePoint environment must also be architected to deliver data close to those who need to access it. Multiple copies of this data must also be provided to ensure failover in the event of an outage. However, SharePoint s native architecture and the inability of a single SharePoint farm to span multiple sites make this a challenge. 4

5 THE SHAREPOINT MVP GUIDE TO ACHIEVING HIGH AVAILABILITY 2 EXPLORING NATIVE HIGH AVAILABILITY OPTIONS WITH SHAREPOINT We touched on the limitations presented by the operational tiers within SharePoint above, but how does this impact native high availability within SharePoint? SharePoint operates at three very distinct layers, each with their own operational requirements, as illustrated in Figure 1. Figure 1: Three Layers of SharePoint infrastructure 5

6 3 THE SHAREPOINT IT S NOT MVP ABOUT GUIDE MIGRATION TO ACHIEVING IT S HIGH ABOUT AVAILABILITY CHANGE MANAGEMENT THE WEB TIER handles user traffic and runs on Internet Information Services (IIS). It feeds this traffic directly into the platform, allowing users to browse pages, upload and download documents, and view reports. To achieve high-availability at the Web tier, multiple Web role servers are typically deployed in a SharePoint farm. A load balancer distributes user requests to these servers to optimize response times and offer redundancy in the event of a server failure. The load balancers may be hardwarebased, but may also involve the use of a software load balancer such as Windows Network Load Balancing, (included in the Windows Server operating system). Windows Network Load Balancing can be a challenge to implement and is generally not recommended, particularly considering the inexpensive nature of hardware load balancers. THE MIDDLE SHAREPOINT LAYER is the Service Application tier. This tier stores shared services such as Search, the Managed Metadata Store, Excel Services, the User Profile Sync Service, and much more. This tier is the most diverse, because each Service Application has its own operational requirements and the majority of them have their own unique high-availability concerns. For the most part, high-availability at this tier can be achieved simply by running a service application on more than one server in a farm. Alternatively, SharePoint administrators can use the User Profile Sync Service Application and the Search Administration component, both of which require manual steps to recover from a server failure. As a general rule, if you set up at least two servers in a farm and turn on each service application on both servers, SharePoint will automatically use both servers. In the event of an outage, the second server will continue to operate, preserving the service application functionality for that farm. 6

7 THE SHAREPOINT IT S NOT MVP ABOUT GUIDE MIGRATION TO ACHIEVING IT S HIGH ABOUT AVAILABILITY CHANGE MANAGEMENT 4 The Search service application brings with it its own level of complexity. Simply turning on the service on two servers will not provide for automatic highavailability. Instead, administrators must make use of the ability to create multiple Index Partitions, query components, and crawlers and split them across the servers running the service applications, similar to the scenario shown in Figure 2. The final operational tier within SharePoint is the DATA TIER, which runs on Microsoft SQL Server. SharePoint is highly dependent on this tier, as all information within a SharePoint site is stored in SQL Server databases. This information includes both content and most of the data stored by the various Service Applications. High-availability at this tier has traditionally taken place via traditional shared storage clustering models involving two or more SQL Servers that share a common set of databases, although the introduction of new SQL Server 2012 and SQL Server 2014 functionality has changed this model which we ll look at next. 7

8 THE SHAREPOINT IT S NOT MVP ABOUT GUIDE MIGRATION TO ACHIEVING IT S HIGH ABOUT AVAILABILITY CHANGE MANAGEMENT 5 USING SQL SERVER 2012/2014 HIGH AVAILABILITY OPTIONS High Availability Options for SQL Server 2012/2014 Potential Data Loss (RPO) Potential Recovery Time (RTO) Auto- Failover Additional Readable Copies Limitations for SharePoint High Availability AlwaysOn Availability Groups Synchronous (Dual-phase commit, no data loss, can t operate across WAN) AlwaysOn Availability Groups Asynchronous (Latency tolerant, cross WAN option, potential for data loss) None 5-7 Seconds Yes 0-2 Cannot work across low bandwidth/ high latency networks Seconds Minutes No 0-4 Cannot be used for SharePoint User Profile Sync Databases AlwaysOn Failover Cluster Instance (FCI) Traditional shared storage clustering NA 30 Seconds to several minutes (depending on disk failover) Yes N/A Cannot work across low bandwidth/ high latency networks. Only one copy of database files. Database Mirroring - High-safety (Synchronous) None 5-10 seconds Yes N/A Cannot work across low bandwidth/ high latency networks Database Mirroring - Highperformance (Asynchronous) Seconds If manually initiated can take minutes, if automated may take hours. No N/A Cannot be used for SharePoint User Profile Sync Databases SQL Log Shipping Minutes If manually initiated can take minutes, if automated may take hours. No Not during a restore Cannot be used for SharePoint Service Application and/or Config databases Traditional Backup and Restore Hours to Days Typically multiple hours, days, or weeks No Not during a restore Not a High Availability technology Table 1: Comparison of the High Availability Options for SQL Server 2012/2014 8

9 5 THE SHAREPOINT IT S NOT MVP ABOUT GUIDE MIGRATION TO ACHIEVING IT S HIGH ABOUT AVAILABILITY CHANGE MANAGEMENT The introduction of new features, such as AlwaysOn Availability, within SQL Server 2012, and later improved in SQL Server 2014, has had a big impact on the high availability state of SharePoint farms. The options included in these versions of SQL Server, shown in Table 1, are significantly more sophisticated than some of the prior options, and provide for some fascinating new design options for SharePoint environments. As indicated in Table 1, there are vastly different levels of Service Level Agreements (SLAs) across the various data tier options. Traditional backup and restore options, for example, may result in data loss that totals hours or days, and may take weeks to bring back online, while some of the options available with the new AlwaysOn features in SQL Server 2012 and SQL Server 2014 provide for zero data loss and failover within seconds. Given these variables, it s critical that organizations carefully review their preferred data tier availability options. The most significant new feature added in Microsoft SQL Server 2014 that changes the design paradigm for SharePoint administrators is a feature known as AlwaysOn Availability Groups (AOAGs). AOAG technology is a combination of SQL database mirroring technologies, where exact copies of databases can be made on other servers, combined with clustering technologies that allow for automated failover. By joining these technologies together, AOAGs enable SharePoint design architects to create multiple redundant copies of SharePoint databases, allowing for up to five total copies of the content. KEY FEATURES OF AOAGS FOR A SHAREPOINT ENVIRONMENT INCLUDE THE ABILITY TO Create synchronous replicas of SharePoint databases on up to three servers, with automatic failover between two of the replicas Create up to four asynchronous replicas of SharePoint content databases, so that content can be directed to remote sites Provide for automated failover of all SharePoint content in a farm within seconds 9

10 5 THE SHAREPOINT IT S NOT MVP ABOUT GUIDE MIGRATION TO ACHIEVING IT S HIGH ABOUT AVAILABILITY CHANGE MANAGEMENT AOAGs enable new high availability design options for SharePoint farms, as illustrated in Figure 3. 10

11 5 THE SHAREPOINT IT S NOT MVP ABOUT GUIDE MIGRATION TO ACHIEVING IT S HIGH ABOUT AVAILABILITY CHANGE MANAGEMENT Figure 3 illustrates a sample design for AOAGs that takes full advantage of all of the features of the technology. In this example, a primary datacenter is configured for automated high availability of the SharePoint data tier, with synchronous copies of all databases configured to automatically failover within seconds between the primary SQL server and the secondary replica. In addition, a third synchronous copy of the content is set for manual failover to a highly connected datacenter located close by. For synchronous AOAGs to work properly, the connectivity must be very high (1GB or greater) and the latency must be very low (1ms average latency or less). In this example, you ll notice two additional asynchronous replicas of content databases created in remote datacenters. These fourth and fifth replicas are limited to the content databases due to the fact that only the Secure Store database and the content databases of SharePoint are supported for asynchronous replicas. All other types of SharePoint database only support synchronous replicas. In this model, the first asynchronous replica is created in a remote site configured with a Read-Only SharePoint farm which allows users in that location to have a local readable copy of their SharePoint content. The final datacenter features an asynchronous copy that provides a failover location for SharePoint content in the event of a disaster. 11

12 5 THE SHAREPOINT IT S NOT MVP ABOUT GUIDE MIGRATION TO ACHIEVING IT S HIGH ABOUT AVAILABILITY CHANGE MANAGEMENT While this model illustrates how the SQL AOAGs can be used to improve some of the design options and provide for levels of local high availability that were previously unattainable the solution is less than ideal. The limitations of AOAGs include the following: COST: Using AOAGs with SharePoint requires an investment in the most expensive Enterprise editions of both SQL Server and Windows Server 2008 R2, Windows Server 2012, or Windows Server 2012 R2. LIMITED SUPPORT FOR UPS DATABASES: Microsoft does not support the failover of the User Profile Sync (UPS) databases from asynchronous database copies. Because of the UPS and asynchronous database limitation, it is recommended that SharePoint be deployed across two AlwaysOn Availability Groups. One group would be limited to those databases that support both asynchronous and synchronous copies, while the second would be reserved for the UPS databases that only support synchronous copies. This provides for enhanced design flexibility should any changes need to be made to the number and type of replicas. LIMITED SUPPORT FOR SQL REPLICA: Support for the addition of a SQL replica directly in Microsoft Azure is limited to the AlwaysOn Availability Group technology available with SQL Server 2014 Enterprise Edition. SQL Server 2012 does not include this capability. 12

13 5 THE SHAREPOINT IT S NOT MVP ABOUT GUIDE MIGRATION TO ACHIEVING IT S HIGH ABOUT AVAILABILITY CHANGE MANAGEMENT EXAMINING THIRD-PARTY REPLICATION MODELS Because of the limitations inherent in SharePoint high availability options, Metalogix has observed that many organizations opt instead for approaches that use application-layer replication technologies to achieve their Service Level Agreements (SLAs). These technologies typically operate at the SharePoint application program interface (API) level to provide a complete SharePoint view and better capabilities to simplify the recovery process looking for new documents and content within a SharePoint site, and then sending that content to another active farm in a different location. Every time a document is added or modified in SharePoint, a copy of that document is then replicated to the multiple farms within the organization. In many cases, these multiple farms are then configured to take advantage of global load balancing modules that allow for a single URL to be used for all of the farms. That way, if a user clicks on a link to a SharePoint site, the load balancer determines what the closest replicated farm is and sends the user to that farm. Since all content is kept in sync via the third-party replication tools, this allows for a seamless experience for the end users. It also keeps content closer to the users, while allowing for multiple live copies of the content to exist in multiple locations. If a local farm is down due to an outage or maintenance, the load balancers can also send users to a different farm in a remote location, preserving availability. These options have been successfully implemented in various forms throughout the years, and are especially interesting from an architecture perspective as they provide for concepts unavailable with the out-of-the box tools available with SharePoint or SQL Server. 13

14 5 THE SHAREPOINT IT S NOT MVP ABOUT GUIDE MIGRATION TO ACHIEVING IT S HIGH ABOUT AVAILABILITY CHANGE MANAGEMENT CONCLUSION Designing a high availability environment within a SharePoint farm can be a complex process. SharePoint architects need to take into account availability at the Web tier, the Service Application tier, and the all-important Data tier. New options in SQL Server 2012 and SQL Server 2014, including AlwaysOn Availability Groups can improve an architect s design options, while other organizations may choose to look at the flexibility and robust high availability models that are provided by third-party replication models instead. SharePoint is an enterprise-critical tool and proper thought and care should be put into the design and implementation of high availability for SharePoint farms. 14

15 5 THE SHAREPOINT IT S NOT MVP ABOUT GUIDE MIGRATION TO ACHIEVING IT S HIGH ABOUT AVAILABILITY CHANGE MANAGEMENT ABOUT THE AUTHOR Michael Noel, a SharePoint MVP, is an internationally recognized technology expert, best-selling author, and well known public speaker on a broad range of IT topics. He has authored several industry books that have been translated into over a dozen languages, with sales exceeding 500,000 copies worldwide. Significant titles include SharePoint 2013 Unleashed, Windows Server 2012 Unleashed, and Exchange Server 2013 Unleashed. Currently a partner at Convergent Computing in the San Francisco Bay Area, Michael s writings and extensive public speaking experience across over 100 countries and all seven continents leverage his real-world expertise helping organizations realize business value from Information Technology infrastructure. 15

16 5 THE SHAREPOINT IT S NOT MVP ABOUT GUIDE MIGRATION TO ACHIEVING IT S HIGH ABOUT AVAILABILITY CHANGE MANAGEMENT ABOUT METALOGIX Metalogix provides industry-recognized management tools for mission-critical collaboration platforms. These tools are engineered and supported by experts committed to the rapidly evolving deployment and operational success of our clients. Metalogix world-class tools and client service have proven to be the most effective way to manage increasingly complex, and exponentially growing metadata and content across collaboration platforms. For over a decade, Metalogix has developed the industry s best and most trusted management tools for SharePoint, Exchange, and Office 365, backed by our globally acknowledged live 24x7 support. Over 14,000 clients rely on Metalogix Tools every minute of every day to monitor, migrate, store, synchronize, archive, secure, and backup their collaboration platforms. Metalogix is a Microsoft Gold Partner, an EMC Select Partner, and a GSA provider. Our Client Service division of certified specialists is the winner of the prestigious NorthFace ScoreBoard Award for World Class Excellence in Customer Service. 16

17 EXPERIENCE AN ALWAYS-ON SHAREPOINT SOLUTION Eliminate business downtime, ensure SharePoint high availability, and maintain continuity of operations (COOP). See how Metalogix Replicator solves your high availability synchronization challenge by delivering quick access to SharePoint content wherever you are, whenever you need it. Synchronize Critical Operation Centers Fast, reliable SharePoint access for global workforce 17

18 MOST TRUSTED SUITE OF TOOLS SharePoint Monitoring SharePoint Migration & Management Multi-farm Sync & Replication Storage Optimization & Performance SharePoint Backup & Restore , File & SharePoint Archiving Security, Compliance & Administration 18

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

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

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

Haute Disponibilité et Reprise sur Incidents en SharePoint 2013 avec SQL Server Always On Availability Groups

Haute Disponibilité et Reprise sur Incidents en SharePoint 2013 avec SQL Server Always On Availability Groups Haute Disponibilité et Reprise sur Incidents en SharePoint 2013 avec SQL Server Always On Availability Groups #SPSParis E04 Serge Luca & Isabelle Van Campenhoudt 30 Mai 2015 / May 30 th, 2015 Organizers

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

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

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

Enhancing Exchange Server 2010 Availability with Neverfail Best Practices for Simplifying and Automating Email Continuity

Enhancing Exchange Server 2010 Availability with Neverfail Best Practices for Simplifying and Automating Email Continuity 2010 Enhancing Exchange Server 2010 Availability with Neverfail Best Practices for Simplifying and Automating Email Continuity Anil Desai http://anildesai.net 2/1/2010 Enhancing Exchange Server 2010 Availability

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

METALOGIX REPLICATOR FOR SHAREPOINT: Supporting Government and Military Missions Worldwide

METALOGIX REPLICATOR FOR SHAREPOINT: Supporting Government and Military Missions Worldwide METALOGIX REPLICATOR FOR SHAREPOINT: Supporting Government and Military Missions Worldwide Contents Introduction...2 Coalition and extranet collaboration... 3 Deploying military units... 4 Fob-rob collaboration...4

More information

The case for cloud-based disaster recovery

The case for cloud-based disaster recovery IBM Global Technology Services IBM SmartCloud IBM SmartCloud Virtualized Server Recovery i The case for cloud-based disaster recovery Cloud technologies help meet the need for quicker restoration of service

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

Protecting Microsoft SQL Server

Protecting Microsoft SQL Server Your company relies on its databases. How are you protecting them? Protecting Microsoft SQL Server 2 Hudson Place suite 700 Hoboken, NJ 07030 Powered by 800-674-9495 www.nsisoftware.com Executive Summary

More information

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

PROTECTING MICROSOFT SQL SERVER TM

PROTECTING MICROSOFT SQL SERVER TM WHITE PAPER PROTECTING MICROSOFT SQL SERVER TM Your company relies on its databases. How are you protecting them? Published: February 2006 Executive Summary Database Management Systems (DBMS) are the hidden

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

Optimize Your SharePoint 2010 Content Using Microsoft s New Storage Guidance

Optimize Your SharePoint 2010 Content Using Microsoft s New Storage Guidance Optimize Your SharePoint 2010 Content Using Microsoft s New Storage Guidance By Corey Milliman October 2011 Copyright 2011 Metalogix International GmbH. All rights reserved. Metalogix is a trademark of

More information

Optimize SharePoint Storage to Cut Costs and Dramatically Improve Performance

Optimize SharePoint Storage to Cut Costs and Dramatically Improve Performance Optimize SharePoint Storage to Cut Costs and Dramatically Improve Performance Michael Noel Published: 2012 CONTENTS UNDERSTANDING THE CURRENT STATE OF SHAREPOINT AND OUT OF CONTROL STORAGE GROWTH... 2

More information

Eliminating End User and Application Downtime:

Eliminating End User and Application Downtime: Eliminating End User and Application Downtime: Architecting the Right Continuous Availability and Disaster Recovery Environment March 2010 Table of Contents Introduction 3 Where to Start 3 Moving to Continuous

More information

Part2 Hyper-V Replica and Hyper-V Recovery Manager. Clive.Watson@Microsoft.com Datacenter Specialist

Part2 Hyper-V Replica and Hyper-V Recovery Manager. Clive.Watson@Microsoft.com Datacenter Specialist Part2 Hyper-V Replica and Hyper-V Recovery Manager Clive.Watson@Microsoft.com Datacenter Specialist Business Continuity Challenges Costs Need to reduce the costs related to downtime Need to reduce the

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

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

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

Eliminating End User and Application Downtime. Protecting Mission-Critical, Multi-Tier Business Applications with Neverfail and Virtualization

Eliminating End User and Application Downtime. Protecting Mission-Critical, Multi-Tier Business Applications with Neverfail and Virtualization Eliminating End User and Application Downtime Protecting Mission-Critical, Multi-Tier Business Applications with Neverfail and Virtualization July 2010 Table of Contents Introduction... 3 Protecting Mission-Critical

More information

TABLE OF CONTENTS THE SHAREPOINT MVP GUIDE TO OPTIMIZING STORAGE AND PERFORMANCE

TABLE OF CONTENTS THE SHAREPOINT MVP GUIDE TO OPTIMIZING STORAGE AND PERFORMANCE 1 TABLE OF CONTENTS 3 Understanding the Current State of Share- Point and Out-of-Control Storage Growth 18 Conclusion 9 Microsoft Guidance on Storage Sizes and Limitations 19 About Metalogix 12 A More

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

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

Real-time Protection for Hyper-V

Real-time Protection for Hyper-V 1-888-674-9495 www.doubletake.com Real-time Protection for Hyper-V Real-Time Protection for Hyper-V Computer virtualization has come a long way in a very short time, triggered primarily by the rapid rate

More information

Changing the SharePoint Backup Game: How to Backup Multi-Terabyte SharePoint Farms in Minutes

Changing the SharePoint Backup Game: How to Backup Multi-Terabyte SharePoint Farms in Minutes Changing the SharePoint Backup Game: How to Backup Multi-Terabyte SharePoint Farms in Minutes Trevor Hellebuyck, Chief Technology Officer, Metalogix 2/2013 CONTENTS EXECUTIVE SUMMARY... 2 OUT-OF-THE-BOX

More information

High Availability with Windows Server 2012 Release Candidate

High Availability with Windows Server 2012 Release Candidate High Availability with Windows Server 2012 Release Candidate Windows Server 2012 Release Candidate (RC) delivers innovative new capabilities that enable you to build dynamic storage and availability solutions

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

Rose Business Technologies

Rose Business Technologies Virtualization and Consolidation vs. Application Performance and WAN Optimization Virtualization and infrastructure consolidation can offer significant benefits for both IT and business operations. The

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

courtesy of F5 NETWORKS New Technologies For Disaster Recovery/Business Continuity overview f5 networks P

courtesy of F5 NETWORKS New Technologies For Disaster Recovery/Business Continuity overview f5 networks P courtesy of F5 NETWORKS New Technologies For Disaster Recovery/Business Continuity overview Business Continuity, Disaster Recovery and Data Center Consolidation IT managers today must be ready for the

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

Leveraging the Cloud for Data Protection and Disaster Recovery

Leveraging the Cloud for Data Protection and Disaster Recovery WHITE PAPER: Leveraging the Cloud for Data Protection and Disaster Recovery Leveraging the Cloud for Data Protection and Disaster Recovery Bennett Klein DATA MANAGEMENT CUSTOMER SOLUTIONS MARCH 2012 Table

More information

Microsoft Azure Cloud on your terms. Start your cloud journey.

Microsoft Azure Cloud on your terms. Start your cloud journey. Microsoft Azure Cloud on your terms. Start your cloud journey. Subscribe, Deploy, Migrate and Get Finance and Support for your Hybrid and/or Cloud Data Center. Never pay huge upfront Cost. How can Azure

More information

ScaleArc for SQL Server

ScaleArc for SQL Server Solution Brief ScaleArc for SQL Server Overview Organizations around the world depend on SQL Server for their revenuegenerating, customer-facing applications, running their most business-critical operations

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

Exchange Data Protection: To the DAG and Beyond. Whitepaper by Brien Posey

Exchange Data Protection: To the DAG and Beyond. Whitepaper by Brien Posey Exchange Data Protection: To the DAG and Beyond Whitepaper by Brien Posey Exchange is Mission Critical Ask a network administrator to name their most mission critical applications and Exchange Server is

More information

Disaster Recovery Strategy for Microsoft Environment

Disaster Recovery Strategy for Microsoft Environment Disaster Recovery Strategy for Microsoft Environment Introduction In business, a computer disaster equals an event that halts the normal operation of day-to-day business activities. A disastrous event

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

WHITE PAPER. Best Practices to Ensure SAP Availability. Software for Innovative Open Solutions. Abstract. What is high availability?

WHITE PAPER. Best Practices to Ensure SAP Availability. Software for Innovative Open Solutions. Abstract. What is high availability? Best Practices to Ensure SAP Availability Abstract Ensuring the continuous availability of mission-critical systems is a high priority for corporate IT groups. This paper presents five best practices that

More information

Symantec and VMware: Virtualizing Business Critical Applications with Confidence WHITE PAPER

Symantec and VMware: Virtualizing Business Critical Applications with Confidence WHITE PAPER Symantec and VMware: Virtualizing Business Critical Applications with Confidence WHITE PAPER Challenges of Using Traditional High-Availability Solutions Business-critical applications and the systems they

More information

Expert Reference Series of White Papers. Unlock the Power of Microsoft SQL Server 2012

Expert Reference Series of White Papers. Unlock the Power of Microsoft SQL Server 2012 Expert Reference Series of White Papers Unlock the Power of Microsoft SQL Server 2012 1-800-COURSES www.globalknowledge.com Unlock the Power of Microsoft SQL Server 2012 Brian D. Egler MCITP/MCSE/MCT 2012,

More information

SQL Server Storage Best Practice Discussion Dell EqualLogic

SQL Server Storage Best Practice Discussion Dell EqualLogic SQL Server Storage Best Practice Discussion Dell EqualLogic What s keeping you up at night? Managing the demands of a SQL environment Risk Cost Data loss Application unavailability Data growth SQL Server

More information

StorageX 7.5 Case Study

StorageX 7.5 Case Study StorageX 7.5 Case Study This document will cover how StorageX 7.5 helps to transform a legacy Microsoft DFS environment into a modern, domain-based DFS environment The Challenge Microsoft has officially

More information

Backup, Restore, High Availability, and Disaster Recovery for Microsoft SharePoint Technologies

Backup, Restore, High Availability, and Disaster Recovery for Microsoft SharePoint Technologies Backup, Restore, High Availability, and Disaster Recovery for Microsoft SharePoint Technologies Module Objectives And Takeaways Module Objectives: Discuss and Demonstrate Content Recovery Features in Windows

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

Virtual Infrastructure Security

Virtual Infrastructure Security Virtual Infrastructure Security 2 The virtual server is a perfect alternative to using multiple physical servers: several virtual servers are hosted on one physical server and each of them functions both

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

Sanovi DRM for Oracle Database

Sanovi DRM for Oracle Database Application Defined Continuity Sanovi DRM for Oracle Database White Paper Copyright@2012, Sanovi Technologies Table of Contents Executive Summary 3 Introduction 3 Audience 3 Oracle Protection Overview

More information

Designing Database Solutions for Microsoft SQL Server 2012 MOC 20465

Designing Database Solutions for Microsoft SQL Server 2012 MOC 20465 Designing Database Solutions for Microsoft SQL Server 2012 MOC 20465 Course Outline Module 1: Designing a Database Server Infrastructure This module explains how to design an appropriate database server

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

Site-Wide Disaster Recovery and Business Continuity Solutions

Site-Wide Disaster Recovery and Business Continuity Solutions Site-Wide Disaster Recovery and Business Continuity Solutions Enterprises need an effective disaster recovery and business continuity plan to safeguard critical business processes. This article presents

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

Virtualizing Exchange

Virtualizing Exchange Virtualizing Exchange Simplifying and Optimizing Management of Microsoft Exchange Server Using Virtualization Technologies By Anil Desai Microsoft MVP September, 2008 An Alternative to Hosted Exchange

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

Cisco and EMC Solutions for Application Acceleration and Branch Office Infrastructure Consolidation

Cisco and EMC Solutions for Application Acceleration and Branch Office Infrastructure Consolidation Solution Overview Cisco and EMC Solutions for Application Acceleration and Branch Office Infrastructure Consolidation IT organizations face challenges in consolidating costly and difficult-to-manage branch-office

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

Cloud Computing Disaster Recovery (DR)

Cloud Computing Disaster Recovery (DR) Cloud Computing Disaster Recovery (DR) Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF Need for Disaster Recovery (DR) What happens when you

More information

SUCCESSFUL SHAREPOINT IMPLEMENTATIONS. Maximize Application Availability and Protect Your Mission Critical Assets

SUCCESSFUL SHAREPOINT IMPLEMENTATIONS. Maximize Application Availability and Protect Your Mission Critical Assets SUCCESSFUL SHAREPOINT IMPLEMENTATIONS Maximize Application Availability and Protect Your Mission Critical Assets Brought to You By 5090 Richmond Avenue Suite #336 3 Second Street, Suite # 202 Houston,

More information

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

SQL SERVER ADVANCED PROTECTION AND FAST RECOVERY WITH EQUALLOGIC AUTO-SNAPSHOT MANAGER WHITE PAPER SQL SERVER ADVANCED PROTECTION AND FAST RECOVERY WITH EQUALLOGIC AUTO-SNAPSHOT MANAGER MANAGEMENT SERIES Business critical applications depend on Relational Database Management Systems (RDBMS)

More information

10231B: Designing a Microsoft SharePoint 2010 Infrastructure

10231B: Designing a Microsoft SharePoint 2010 Infrastructure 10231B: Designing a Microsoft SharePoint 2010 Infrastructure Course Number: 10231B Course Length: 5 Days Course Overview This 5 day course teaches IT Professionals to design and deploy Microsoft SharePoint

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

www.rackwareinc.com RackWare Solutions Disaster Recovery

www.rackwareinc.com RackWare Solutions Disaster Recovery RackWare Solutions Disaster Recovery RackWare Solutions Disaster Recovery Overview Business Continuance via Disaster Recovery is an essential element of IT and takes on many forms. The high end consists

More information

CommVault Simpana Replication Software Optimized Data Protection and Recovery for Datacenter or Remote/Branch Office Environments

CommVault Simpana Replication Software Optimized Data Protection and Recovery for Datacenter or Remote/Branch Office Environments BACKUP & RECOVERY ARCHIVE REPLICATION RESOURCE MANAGEMENT SEARCH Key Benefits Consolidates data over thin WAN connections and expedites local recovery Eliminates tape management at multiple locations by

More information

EMC VPLEX FAMILY. Continuous Availability and data Mobility Within and Across Data Centers

EMC VPLEX FAMILY. Continuous Availability and data Mobility Within and Across Data Centers EMC VPLEX FAMILY Continuous Availability and data Mobility Within and Across Data Centers DELIVERING CONTINUOUS AVAILABILITY AND DATA MOBILITY FOR MISSION CRITICAL APPLICATIONS Storage infrastructure is

More information

High Availability & Disaster Recovery Development Project. Concepts, Design and Implementation

High Availability & Disaster Recovery Development Project. Concepts, Design and Implementation High Availability & Disaster Recovery Development Project Concepts, Design and Implementation High Availability & Disaster Recovery Development Project CONCEPTS Who: Schmooze Com Inc, maintainers, core

More information

VMware System, Application and Data Availability With CA ARCserve High Availability

VMware System, Application and Data Availability With CA ARCserve High Availability Solution Brief: CA ARCserve R16.5 Complexity ate my budget VMware System, Application and Data Availability With CA ARCserve High Availability Adding value to your VMware environment Overview Today, performing

More information

Preparing for Server 2012 Hyper-V: Seven Questions to Ask Now Greg Shields

Preparing for Server 2012 Hyper-V: Seven Questions to Ask Now Greg Shields Preparing for Server 2012 Hyper-V: Seven Questions to Ask Now Greg Shields Microsoft MVP and VMware vexpert September, 2012 may be the release date for Windows Server 2012, but odds are good that your

More information

Understanding Neo4j Scalability

Understanding Neo4j Scalability Understanding Neo4j Scalability David Montag January 2013 Understanding Neo4j Scalability Scalability means different things to different people. Common traits associated include: 1. Redundancy in the

More information

VERITAS Backup Exec 10 for Windows Servers AGENTS & OPTIONS MEDIA SERVER OPTIONS KEY BENEFITS AGENT AND OPTION GROUPS

VERITAS Backup Exec 10 for Windows Servers AGENTS & OPTIONS MEDIA SERVER OPTIONS KEY BENEFITS AGENT AND OPTION GROUPS DATASHEET VERITAS Backup Exec 10 for Windows Servers AGENTS & OPTIONS VERITAS Backup Exec for Windows Servers is the Gold Standard in Windows data protection providing comprehensive, cost effective, certified

More information

BUSINESS CONTINUITY AND DISASTER RECOVERY FOR ORACLE 11g

BUSINESS CONTINUITY AND DISASTER RECOVERY FOR ORACLE 11g BUSINESS CONTINUITY AND DISASTER RECOVERY FOR ORACLE 11g ENABLED BY EMC VMAX 10K AND EMC RECOVERPOINT Technical Presentation EMC Solutions Group 1 Agenda Business case Symmetrix VMAX 10K overview RecoverPoint

More information

Availability for the modern datacentre Veeam Availability Suite v8 & Sneakpreview v9

Availability for the modern datacentre Veeam Availability Suite v8 & Sneakpreview v9 Veeam Summer School Availability for the modern datacentre Veeam Availability Suite v8 & Sneakpreview v9 Jan van Leuken System Engineer Benelux, Veeam Software jan.vanleuken@veeam.com +31 (0)615 83 50

More information

OmniCube. SimpliVity OmniCube and Multi Federation ROBO Reference Architecture. White Paper. Authors: Bob Gropman

OmniCube. SimpliVity OmniCube and Multi Federation ROBO Reference Architecture. White Paper. Authors: Bob Gropman OmniCube SimpliVity OmniCube and Multi Federation ROBO Reference Architecture White Paper Authors: Bob Gropman Date: April 13, 2015 SimpliVity and OmniCube are trademarks of SimpliVity Corporation. All

More information

MS 20465C: Designing a Data Solution with Microsoft SQL Server

MS 20465C: Designing a Data Solution with Microsoft SQL Server MS 20465C: Designing a Data Solution with Microsoft SQL Server Description: Note: Days: 5 Prerequisites: The focus of this five-day instructor-led course is on planning and implementing enterprise database

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

WELKOM Cloud met Azure

WELKOM Cloud met Azure WELKOM Cloud met Azure Inspiratiedag zonder praatjes Cloud met Azure Inspiratiedag zonder praatjes Brecht Vuylsteke Microsoft System Engineer RealDolmen SQL Hybrid on Azure Agenda Introduction Disaster

More information

Server & Cloud Management

Server & Cloud Management Technical Bootcamp: The Cloud-enabled Datacenter with Windows Server 2012 and System Center 2012 This 3-day, instructor-led course will help you understand how to evolve a traditional datacenter configuration

More information

Enterprise Data Protection for SharePoint

Enterprise Data Protection for SharePoint Enterprise Data Protection for SharePoint Saguenay (Sag) Baruss Senior TSP, AvePoint Canada ** ** This presentation was created and distributed independently of AvePoint. For additional information on

More information

NetApp SnapMirror. Protect Your Business at a 60% lower TCO. Title. Name

NetApp SnapMirror. Protect Your Business at a 60% lower TCO. Title. Name NetApp SnapMirror Protect Your Business at a 60% lower TCO Name Title Disaster Recovery Market Trends Providing disaster recovery remains critical Top 10 business initiative #2 area for storage investment

More information

Federated Application Centric Infrastructure (ACI) Fabrics for Dual Data Center Deployments

Federated Application Centric Infrastructure (ACI) Fabrics for Dual Data Center Deployments Federated Application Centric Infrastructure (ACI) Fabrics for Dual Data Center Deployments March 13, 2015 Abstract To provide redundancy and disaster recovery, most organizations deploy multiple data

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

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

WHITE PAPER ENHANCING YOUR SQL REPORTING SERVICES DEPLOYMENT WITH DOUBLE-TAKE

WHITE PAPER ENHANCING YOUR SQL REPORTING SERVICES DEPLOYMENT WITH DOUBLE-TAKE WHITE PAPER ENHANCING YOUR SQL REPORTING SERVICES DEPLOYMENT WITH DOUBLE-TAKE Published: May 2006 Executive Summary Database Management Systems (DBMS) are the hidden engines behind some of a company's

More information

Server and Storage Virtualization with IP Storage. David Dale, NetApp

Server and Storage Virtualization with IP Storage. David Dale, NetApp Server and Storage Virtualization with IP Storage David Dale, NetApp SNIA Legal Notice The material contained in this tutorial is copyrighted by the SNIA. Member companies and individuals may use this

More information

Windows Server 2003 Migration Guide: Nutanix Webscale Converged Infrastructure Eases Migration

Windows Server 2003 Migration Guide: Nutanix Webscale Converged Infrastructure Eases Migration Windows Server 2003 Migration Guide: Nutanix Webscale Converged Infrastructure Eases Migration Windows Server 2003 end-of-support means planning must start now James E. Bagley Senior Analyst Deni Connor

More information

TECHNICAL SOLUTION BRIEF

TECHNICAL SOLUTION BRIEF EXCHANGE 2010 DAG Microsoft Exchange Database Availability Groups (DAG) provide a simpler way to replicate data than the approaches in previous versions of Exchange, allowing for easier creation of a single-site

More information

SQL Server 2012/2014 AlwaysOn Availability Group

SQL Server 2012/2014 AlwaysOn Availability Group SQL Server 2012/2014 AlwaysOn Availability Group Part 1 - Introduction v1.0-2014 - G.MONVILLE Summary SQL Server 2012 AlwaysOn - Introduction... 2 AlwaysOn Features... 2 AlwaysOn FCI (Failover Cluster

More information

Neverfail Solutions for VMware: Continuous Availability for Mission-Critical Applications throughout the Virtual Lifecycle

Neverfail Solutions for VMware: Continuous Availability for Mission-Critical Applications throughout the Virtual Lifecycle Neverfail Solutions for VMware: Continuous Availability for Mission-Critical Applications throughout the Virtual Lifecycle Table of Contents Virtualization 3 Benefits of Virtualization 3 Continuous Availability

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

Migration and Disaster Recovery Underground in the NEC / Iron Mountain National Data Center with the RackWare Management Module

Migration and Disaster Recovery Underground in the NEC / Iron Mountain National Data Center with the RackWare Management Module Migration and Disaster Recovery Underground in the NEC / Iron Mountain National Data Center with the RackWare Management Module WHITE PAPER May 2015 Contents Advantages of NEC / Iron Mountain National

More information

Cass Walker TLG Learning

Cass Walker TLG Learning Cass Walker TLG Learning Query Window Zoom Query Window Outlining T-SQL Language Enhancements Integration Services Catalogs Default Location for Backup Files MS Help Viewer FileTable AlwaysOn PowerPivot

More information

Third-Party Backup and Restore Tools

Third-Party Backup and Restore Tools 05990_AppendixA_onwebsite 1/7/09 9:59 AM Page A-1 Appendix A Third-Party Backup and Restore Tools In This Chapter Considerations The Tools CONSIDERATIONS Obviously, being able to design, prepare, and implement

More information

Continuous Data Protection for any Point-in-Time Recovery: Product Options for Protecting Virtual Machines or Storage Array LUNs

Continuous Data Protection for any Point-in-Time Recovery: Product Options for Protecting Virtual Machines or Storage Array LUNs EMC RECOVERPOINT FAMILY Continuous Data Protection for any Point-in-Time Recovery: Product Options for Protecting Virtual Machines or Storage Array LUNs ESSENTIALS EMC RecoverPoint Family Optimizes RPO

More information

Hadoop in the Hybrid Cloud

Hadoop in the Hybrid Cloud Presented by Hortonworks and Microsoft Introduction An increasing number of enterprises are either currently using or are planning to use cloud deployment models to expand their IT infrastructure. Big

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

Designing a Data Solution with Microsoft SQL Server 2014

Designing a Data Solution with Microsoft SQL Server 2014 20465C - Version: 1 22 June 2016 Designing a Data Solution with Microsoft SQL Server 2014 Designing a Data Solution with Microsoft SQL Server 2014 20465C - Version: 1 5 days Course Description: The focus

More information