<?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/"
	>

<channel>
	<title>Azure Support &#187; Backup</title>
	<atom:link href="http://www.azuresupport.com/tag/backup/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.azuresupport.com</link>
	<description>Windows Azure Tutorial</description>
	<lastBuildDate>Mon, 25 Apr 2011 10:32:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>SQL Azure Backup Using Database Copy</title>
		<link>http://www.sqlazureperformance.com/2010/sql-azure-backup-database-copy/</link>
		<comments>http://www.sqlazureperformance.com/2010/sql-azure-backup-database-copy/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 05:44:32 +0000</pubDate>
		<dc:creator>azuresupport</dc:creator>
				<category><![CDATA[SQL Azure]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Copy]]></category>

		<guid isPermaLink="false">http://www.azuresupport.com/?p=865</guid>
		<description><![CDATA[Backup is currently a major gap in the SQL Azure product, but with support for Database Copy TSQL command has given at least one option for directly backing up a SQL Azure database by copying a source Azure database to a newly created  Azure database. The TSQL command structure below provides will produce a copy [...]]]></description>
			<content:encoded><![CDATA[<p>Backup is currently a major gap in the SQL Azure product, but with support for Database Copy TSQL command has given at least one option for directly backing up a SQL Azure database by copying a source Azure database to a newly created  Azure database.</p>
<p>The TSQL command structure below provides will produce a copy of a database:</p>
<pre>CREATE DATABASE  database_destination_name
AS COPY OF [source_server_name.]database_source_name</pre>
<p><br class="spacer_" /></p>
<p>Note that this TSQL syntax allows for copying to a different Azure server. This is not necessary to protect the data from a disaster recovery point of view since the data is replicated across 3 geographic locations, but it might be required if you wish to copy the database to a different admin account or perhaps a different Azure account that would be billed separately to the source database account. If the database is copied to a new server the exact same login/password pair executing the command must exist on both the source server and destination server.</p>
<p>The copying process will not result in any downtime for the source database, and the copy will be a full copy complete with transactional data (note that this will be the transaction data as at the end time of the copying process not the start time of the copying process).</p>
<p>To monitor the copying process and determine if there were any copying errors you can query the <em>sys.dm_database_copies</em> view. The below command will retrieve all the data regarding the copying process:</p>
<pre>Select * from sys.dm_database_copies</pre>
<p>A major drawback to using Database Copy for backup is cost &#8211; each copy/backup will be charged as a new SQL Azure database.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sqlazureperformance.com/2010/sql-azure-backup-database-copy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Azure Continuous Backup</title>
		<link>http://www.sqlazureperformance.com/2010/sql-azure-continuous-backup/</link>
		<comments>http://www.sqlazureperformance.com/2010/sql-azure-continuous-backup/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 04:41:03 +0000</pubDate>
		<dc:creator>azuresupport</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[SQL Azure]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Continuous Backup]]></category>

		<guid isPermaLink="false">http://www.azuresupport.com/?p=777</guid>
		<description><![CDATA[SQL Azure Continuous Backup is one the two main methods for backing up databases which run  on  SQL Azure. Continuous Backup enables developers to backup a database on a continuous basis &#8211; as in the backup will not function as a standalone database but must be restored to the original database (in contrast to the [...]]]></description>
			<content:encoded><![CDATA[<p>SQL Azure Continuous Backup is one the two main methods for backing up databases which run  on  SQL Azure. Continuous Backup enables developers to backup a database on a continuous basis &#8211; as in the backup will not function as a standalone database but must be restored to the original database (in contrast to the Clone Backup which can be used as a separate standalone database).</p>
<p>Continuous Backup is slated for release in late 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sqlazureperformance.com/2010/sql-azure-continuous-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Azure Clone Backup</title>
		<link>http://www.sqlazureperformance.com/2010/sql-azure-clone-backup/</link>
		<comments>http://www.sqlazureperformance.com/2010/sql-azure-clone-backup/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 16:09:12 +0000</pubDate>
		<dc:creator>azuresupport</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[SQL Azure]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Clone Backup]]></category>

		<guid isPermaLink="false">http://www.azuresupport.com/?p=772</guid>
		<description><![CDATA[SQL Azure Clone Backup is one of the two primary methods for backing up SQL Azure databases. Clone Backup is promised coming in H2 2010 &#8211; although there have been no announcements to date. The clone will create a single (perhaps scheduled) snapshot of a database at a point in time. The other main method [...]]]></description>
			<content:encoded><![CDATA[<p>SQL Azure Clone Backup is one of the two primary methods for backing up SQL Azure databases. Clone Backup is promised coming in H2 2010 &#8211; although there have been no announcements to date. The clone will create a single (perhaps scheduled) snapshot of a database at a point in time. The other main method for backing up SQL Azure databases in Continuous Backup.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sqlazureperformance.com/2010/sql-azure-clone-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Azure Backup</title>
		<link>http://www.sqlazureperformance.com/2010/sql-azure-backup/</link>
		<comments>http://www.sqlazureperformance.com/2010/sql-azure-backup/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 06:32:18 +0000</pubDate>
		<dc:creator>azuresupport</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[SQL Azure]]></category>

		<guid isPermaLink="false">http://www.azuresupport.com/?p=113</guid>
		<description><![CDATA[As of August 2010 SQL Azure does not contain any inbuilt backup options. The closest to an inbuilt backup functions is support for the TSQL Database Copy command which produces a transactionally complete copy of a database. Coming in 2010, Azure will deliver two backup methods &#8211; Clone and Continuous Backup. Clone (targeted for release [...]]]></description>
			<content:encoded><![CDATA[<p>As of August 2010 SQL Azure does not contain any inbuilt backup options.</p>
<p>The closest to an inbuilt backup functions is support for the TSQL <a href="http://www.azuresupport.com/2010/08/sql-azure-backup-database-copy/">Database Copy</a> command which produces a transactionally complete copy of a database.</p>
<p>Coming in 2010, Azure will deliver two backup methods &#8211; Clone and Continuous Backup. Clone (targeted for release in H1 2010) allows for a transactionally consistent &#8216;clone&#8217; to be made of a database, once a clone is created it is a totally separate database with no relations to the &#8216;parent&#8217; database. Continuous Backup (targeted for release in H2 2010) is similar to a mirror and is configured with a retention period and a lag time. Continuous Backup copies will be read-only. These will be be add-ons to the standard SQL Azure service and will incur an additional fee which was has not yet been announced.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sqlazureperformance.com/2010/sql-azure-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup and Disaster Recovery Protection on Azure  [FAQ]</title>
		<link>http://www.azuresupport.com/2009/12/backup-and-disaster-recovery-protection-on-azure-faq/</link>
		<comments>http://www.azuresupport.com/2009/12/backup-and-disaster-recovery-protection-on-azure-faq/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 02:55:42 +0000</pubDate>
		<dc:creator>azuresupport</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Disaster Recovery]]></category>

		<guid isPermaLink="false">http://www.azuresupport.com/?p=80</guid>
		<description><![CDATA[As at launch in January 2010  data on Azure is replicated three times in the Azure storage system, in addition the data is replicated across at least two geographic datacenters (although Microsoft did not provide any more details on the timing for replication across datacenters).]]></description>
			<content:encoded><![CDATA[<p>As at launch in January 2010  data on Azure is replicated three times in the Azure storage system, in addition the data is replicated across at least two geographic datacenters (although Microsoft did not provide any more details on the timing for replication across datacenters).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.azuresupport.com/2009/12/backup-and-disaster-recovery-protection-on-azure-faq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

