<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Mirrored Backup Introduction and Explanation</title>
	<atom:link href="http://blog.sqlauthority.com/2007/12/25/sql-server-mirrored-backup-introduction-and-explanation/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/12/25/sql-server-mirrored-backup-introduction-and-explanation/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Sun, 12 Feb 2012 09:22:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: siraj</title>
		<link>http://blog.sqlauthority.com/2007/12/25/sql-server-mirrored-backup-introduction-and-explanation/#comment-132105</link>
		<dc:creator><![CDATA[siraj]]></dc:creator>
		<pubDate>Sat, 30 Apr 2011 08:02:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/25/sql-server-mirrored-backup-introduction-and-explanation/#comment-132105</guid>
		<description><![CDATA[This is Siraj,


 I am trying to login mixed mode to windows mod please explain this issue in sqlserver.]]></description>
		<content:encoded><![CDATA[<p>This is Siraj,</p>
<p> I am trying to login mixed mode to windows mod please explain this issue in sqlserver.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imran Mohammed</title>
		<link>http://blog.sqlauthority.com/2007/12/25/sql-server-mirrored-backup-introduction-and-explanation/#comment-41830</link>
		<dc:creator><![CDATA[Imran Mohammed]]></dc:creator>
		<pubDate>Wed, 20 Aug 2008 17:06:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/25/sql-server-mirrored-backup-introduction-and-explanation/#comment-41830</guid>
		<description><![CDATA[@Bijay Kant

This might be because of these two things,

1. First check if the folder on the network drive ( other machine) is shared on not. if it is not shared, it cannot be opened.

2. Normally when you create a shared folder, you do not give full permissions over the folder to others, to write and make changes, if that is the case then change the properties of the shared folder, 

right click shared folder-&gt; properties-&gt;sharing, check if &quot;share this folder is checked and below that click permissions tab and then select full control and select change, click ok.

Now do the backup 

BACKUP DATABASE database_name
to DISK = &#039;\\computer_name\shared_folder_name\backupcopy.BAK&#039;
WITH FORMAT

It should work now. 

Hope this helps.
Imran.]]></description>
		<content:encoded><![CDATA[<p>@Bijay Kant</p>
<p>This might be because of these two things,</p>
<p>1. First check if the folder on the network drive ( other machine) is shared on not. if it is not shared, it cannot be opened.</p>
<p>2. Normally when you create a shared folder, you do not give full permissions over the folder to others, to write and make changes, if that is the case then change the properties of the shared folder, </p>
<p>right click shared folder-&gt; properties-&gt;sharing, check if &#8220;share this folder is checked and below that click permissions tab and then select full control and select change, click ok.</p>
<p>Now do the backup </p>
<p>BACKUP DATABASE database_name<br />
to DISK = &#8216;\\computer_name\shared_folder_name\backupcopy.BAK&#8217;<br />
WITH FORMAT</p>
<p>It should work now. </p>
<p>Hope this helps.<br />
Imran.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bijay Kant</title>
		<link>http://blog.sqlauthority.com/2007/12/25/sql-server-mirrored-backup-introduction-and-explanation/#comment-41808</link>
		<dc:creator><![CDATA[Bijay Kant]]></dc:creator>
		<pubDate>Wed, 20 Aug 2008 06:31:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/25/sql-server-mirrored-backup-introduction-and-explanation/#comment-41808</guid>
		<description><![CDATA[Hello Dave

Above code is for multiplexing on same server, that can be done by 

BACKUP DATABASE AdventureWorks
            TO DISK = &#039;c:\AdventureWorksBackup.bak&#039;,
                 DISK = &#039;d:\AdventureWorksBackupCopy.bak&#039;
            WITH FORMAT

My problem is that i have to mirror it on different server which is on same network but there is no dns. When is use below given command it raise error 

BACKUP DATABASE AdventureWorks
            TO DISK = &#039;c:\AdventureWorksBackup.bak&#039;
            MIRROR
            TO DISK = &#039;\\Myserver\ABCdb\BackupCopy.bak&#039;
            WITH FORMAT

error is 

Msg 3201, Level 16, State 1, Procedure BackupABCdb, Line 9
Cannot open backup device &#039;\\Myserver\ABCdb\BackupCopy.bak&#039;. Operating system error 5(Access is denied.).
Msg 3013, Level 16, State 1, Procedure BackupABCdb, Line 9
BACKUP DATABASE is terminating abnormally

So, if possible kindly tell me the solution for this problem.
thanks]]></description>
		<content:encoded><![CDATA[<p>Hello Dave</p>
<p>Above code is for multiplexing on same server, that can be done by </p>
<p>BACKUP DATABASE AdventureWorks<br />
            TO DISK = &#8216;c:\AdventureWorksBackup.bak&#8217;,<br />
                 DISK = &#8216;d:\AdventureWorksBackupCopy.bak&#8217;<br />
            WITH FORMAT</p>
<p>My problem is that i have to mirror it on different server which is on same network but there is no dns. When is use below given command it raise error </p>
<p>BACKUP DATABASE AdventureWorks<br />
            TO DISK = &#8216;c:\AdventureWorksBackup.bak&#8217;<br />
            MIRROR<br />
            TO DISK = &#8216;\\Myserver\ABCdb\BackupCopy.bak&#8217;<br />
            WITH FORMAT</p>
<p>error is </p>
<p>Msg 3201, Level 16, State 1, Procedure BackupABCdb, Line 9<br />
Cannot open backup device &#8216;\\Myserver\ABCdb\BackupCopy.bak&#8217;. Operating system error 5(Access is denied.).<br />
Msg 3013, Level 16, State 1, Procedure BackupABCdb, Line 9<br />
BACKUP DATABASE is terminating abnormally</p>
<p>So, if possible kindly tell me the solution for this problem.<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vani</title>
		<link>http://blog.sqlauthority.com/2007/12/25/sql-server-mirrored-backup-introduction-and-explanation/#comment-37842</link>
		<dc:creator><![CDATA[vani]]></dc:creator>
		<pubDate>Mon, 12 May 2008 20:41:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/25/sql-server-mirrored-backup-introduction-and-explanation/#comment-37842</guid>
		<description><![CDATA[Hi Dave,


              The above commad is giving syntax error
Here goes the error. Please advice wheather it is syntax error or Did I miss anything in the command.

Msg 170, Level 15, State 1, Line 3
Line 3: Incorrect syntax near &#039;MIRROR&#039;.]]></description>
		<content:encoded><![CDATA[<p>Hi Dave,</p>
<p>              The above commad is giving syntax error<br />
Here goes the error. Please advice wheather it is syntax error or Did I miss anything in the command.</p>
<p>Msg 170, Level 15, State 1, Line 3<br />
Line 3: Incorrect syntax near &#8216;MIRROR&#8217;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

