<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>SharePoint Magazine &#187; data protection manager</title>
	<atom:link href="http://sharepointmagazine.net/tag/data-protection-manager/feed" rel="self" type="application/rss+xml" />
	<link>http://sharepointmagazine.net</link>
	<description>SharePoint Magazine is an online Magazine dedicated to the world of SharePoint</description>
	<lastBuildDate>Mon, 05 Jul 2010 09:14:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>SharePoint Farm configuring and deployment. Part 4 &#8211; Backup and Recovery Strategy</title>
		<link>http://sharepointmagazine.net/technical/administration/best-practices-of-sharepoint-farm-configuring-and-deployment-part-4-backup-and-recovery-strategy</link>
		<comments>http://sharepointmagazine.net/technical/administration/best-practices-of-sharepoint-farm-configuring-and-deployment-part-4-backup-and-recovery-strategy#comments</comments>
		<pubDate>Fri, 12 Jun 2009 14:16:40 +0000</pubDate>
		<dc:creator>Michael Nemtsev</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Customisation]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[availability]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[data protection manager]]></category>
		<category><![CDATA[Data Recovery]]></category>
		<category><![CDATA[mirroring]]></category>
		<category><![CDATA[redundancy]]></category>

		<guid isPermaLink="false">http://sharepointmagazine.net/?p=3193</guid>
		<description><![CDATA[This series of articles provide an overview of how to plan, build and configure the common SharePoint farm across your organization.]]></description>
			<content:encoded><![CDATA[<ul>
<li>Part 1 &#8211; <a href="http://sharepointmagazine.net/technical/administration/best-practices-of-sharepoint-farm-configuring-and-deployment-part-1-architectural-and-logical-planning">Architecture and Logical Planning</a></li>
<li>Part 2 &#8211; <a href="http://sharepointmagazine.net/technical/administration/best-practices-of-sharepoint-farm-configuring-and-deployment-part-2-installation-configuration">Installation</a></li>
<li>Part 3 &#8211; <a href="http://sharepointmagazine.net/technical/administration/best-practices-of-sharepoint-farm-configuring-and-deployment-part-3-development-environment">Development Environment</a></li>
<li><strong>Part 4 &#8211; Backup and Recovery Strategy</strong></li>
<li>Part 5 &#8211; Virtualization</li>
<li>Part 6 &#8211; Post Deployment (final)</li>
</ul>
<hr />
<h2>Backup and Recovery Strategy</h2>
<p><strong>Use separate server for Disaster Recovery (DR)</strong></p>
<p style="padding-left: 30px; ">Use additional server with installed SharePoint for DR. Do not connect this server to the existing SharePoint farm &#8211; it should be isolated environment with single SharePoint installation, or &#8220;3 servers farm&#8221;. Disaster Recovery servers must locate outside corporate networks, and ideally, outside corporation premises. Usually, it locates in different data centre. The reason for this to provide data availability in case of the network or data centre outage.</p>
<p><strong>Configure mirroring</strong></p>
<p style="padding-left: 30px; ">Configure SQL mirroring of content databases to provide data reliability. It should be done in the early stages, when content databases are very small, not for the hundreds gigs of content. The reason is that network bandwidth to DR is usually limited due to distant location of the servers, and setting mirroring for large databases became slow process.<br />
Refer to the following document for more details about configuring SQL mirroring <a href="http://go.microsoft.com/fwlink/?LinkId=83725&amp;clcid=0x409" target="_blank">http://go.microsoft.com/fwlink/?LinkId=83725&amp;clcid=0&#215;409</a></p>
<p><strong>Recovery data immediately</strong></p>
<p style="padding-left: 30px; ">Highly available farms imply reliable strategy of data recovery. SQL Mirroring is only part of this strategy. Data restore in reasonable time is one of the factor of DR strategy</p>
<p style="padding-left: 30px; ">Consider several scenarios for backup/recovery:</p>
<p style="padding-left: 30px; ">1. <strong><em>OOTB backup/restore</em></strong>. SharePoint does not provide reliable mechanism of automatic backups. Backup/Restore feature available via Central Administration or via STSADM command. The only way to schedule this task is to use STSADM and windows scheduler to configure backups/restore.<br />
Disadvantages:</p>
<ul>
<li>not reliable approach due to dependency of singe instance of scheduler;</li>
<li>scheduler location on the single server, no multiple instances;</li>
<li>no granularity of restored items;</li>
</ul>
<p style="padding-left: 30px; ">2)	<strong><em>SQL snapshots of content database</em></strong> (<a href="http://tinyurl.com/d2auns" target="_blank">http://tinyurl.com/d2auns</a>)<br />
Disadvantage - lack of granularity in backup/restore</p>
<p style="padding-left: 30px; ">3)	<strong><em>Data Protection Manager (DPM)</em></strong> &#8211; is one of the recommended solutions for data recovery strategy in large SharePoint farms.</p>
<p style="padding-left: 60px;">a.	DPM provides reliable and flexible functionality to backup, search and restore items.<br />
b.	Supports backup/restore of different servers in network &#8211; SQL Server, Exchange, file shares backups, and etc.<br />
c.	Adapts to the changes in Farm dynamically &#8211; add, delete or relocate servers.<br />
d.	Monitors and records all changes in SharePoint content DB by integrating into SharePoint VSS Writer.<br />
e.	Provides search functionality for any deleted items across content DB and restore data from content db.<br />
f.	Granularity in restoration of documents, sites, and applications.</p>
<p style="padding-left: 30px;">One disadvantage of DPM is that it requires additional, clean, SharePoint instance to be used as temporary location of restored items to merge them with production content DB.</p>
<p style="padding-left: 30px; ">Some recommendation of DPM usage:</p>
<p style="padding-left: 60px;">-	Do not use existed SharePoint farm servers disconnected from the SharePoint farm &#8211; this approach has many bugs, and restoration fails in most cases.<br />
- Iinstall SP1 for DPM &#8211; it provides significant performance increase for indexes and catalogue (<a href="http://technet.microsoft.com/en-us/library/dd347836.aspx" target="_blank">http://technet.microsoft.com/en-us/library/dd347836.aspx</a>)</p>
<p style="padding-left: 30px;">4)	<strong><em>Third party tools &#8211; </em><em><span style="font-weight: normal;"><a href="http://www.quest.com/recovery-manager-for-sharepoint/" target="_blank">Quest Recovery Manager</a>, <a href="http://au.avepoint.com/sharepoint-backup-and-recovery-docave/" target="_blank">DocAve</a> and <a href="http://au.avepoint.com/sharepoint-backup-and-recovery-docave/" target="_blank">Idera Backup</a></span></em></strong>. They provide the similar functionality of the DPM, but in some cases address SharePoint behaviour only, and might not provide enterprise level of backup strategy.</p>
<p style="padding-left: 30px; ">Quest Recovery Manager is the preferable tool for data restoration &#8211; lightweight application that does not require additional servers to restore deleted items.</p>
<p style="padding-left: 30px; "><img class="alignnone size-full wp-image-3367" src="http://sharepointmagazine.net/wp-content/uploads/2009/06/questmanager1.jpg" alt="questmanager1" width="410" height="301" /></p>
<p style="padding-left: 30px; ">
<hr />In the next part we will describe virtualization and how to design SharePoint properly for virtualized environment.</p>
]]></content:encoded>
			<wfw:commentRss>http://sharepointmagazine.net/technical/administration/best-practices-of-sharepoint-farm-configuring-and-deployment-part-4-backup-and-recovery-strategy/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
