<?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; Restore Sequence and Understanding NORECOVERY and RECOVERY</title>
	<atom:link href="http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: suhas</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-421693</link>
		<dc:creator><![CDATA[suhas]]></dc:creator>
		<pubDate>Thu, 14 Feb 2013 10:20:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-421693</guid>
		<description><![CDATA[nice article... helped a lot..]]></description>
		<content:encoded><![CDATA[<p>nice article&#8230; helped a lot..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nvn</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-311715</link>
		<dc:creator><![CDATA[nvn]]></dc:creator>
		<pubDate>Tue, 10 Jul 2012 07:21:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-311715</guid>
		<description><![CDATA[Hi Pinal Sir,

Please let me know, if there is a way to create a full backup daily with log backups/ differential backups.

My Primary Server is too far. I am sitting at the DR Site. I cannot transfer fullbackup daily. I need to take full backup and copy to tape.

Regards,
nvn]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal Sir,</p>
<p>Please let me know, if there is a way to create a full backup daily with log backups/ differential backups.</p>
<p>My Primary Server is too far. I am sitting at the DR Site. I cannot transfer fullbackup daily. I need to take full backup and copy to tape.</p>
<p>Regards,<br />
nvn</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rukmani</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-284450</link>
		<dc:creator><![CDATA[rukmani]]></dc:creator>
		<pubDate>Mon, 14 May 2012 06:55:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-284450</guid>
		<description><![CDATA[Hi Pinal Sir,

I have been a frequent visitor of your Site, and must say it is quite informative and helpful !! Hearty Thank You.

I was wondering if you could also let us know something about the “Security&quot;


Regards,
Rukku]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal Sir,</p>
<p>I have been a frequent visitor of your Site, and must say it is quite informative and helpful !! Hearty Thank You.</p>
<p>I was wondering if you could also let us know something about the “Security&#8221;</p>
<p>Regards,<br />
Rukku</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ahmad El.</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-259512</link>
		<dc:creator><![CDATA[Ahmad El.]]></dc:creator>
		<pubDate>Sun, 04 Mar 2012 21:03:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-259512</guid>
		<description><![CDATA[Dear Pinal Dave,

can i restore LOG without restore the FULL backup at first, namely i need to restore a full backup first then i need to add new files to make partitioning on 2 tables, after that i need to restore LOG backup. so i need the database to be online but i will not make any transaction on database while it&#039;s online. 

it this double?]]></description>
		<content:encoded><![CDATA[<p>Dear Pinal Dave,</p>
<p>can i restore LOG without restore the FULL backup at first, namely i need to restore a full backup first then i need to add new files to make partitioning on 2 tables, after that i need to restore LOG backup. so i need the database to be online but i will not make any transaction on database while it&#8217;s online. </p>
<p>it this double?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Siddharth</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-197179</link>
		<dc:creator><![CDATA[Siddharth]]></dc:creator>
		<pubDate>Wed, 16 Nov 2011 20:36:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-197179</guid>
		<description><![CDATA[Hi Everyone, 

I tried to restore SQL Server 2000 xxx.bak database on another database. The code is 

Use Master
go
 
Alter Database xxx
  SET SINGLE_USER With ROLLBACK IMMEDIATE
 
RESTORE DATABASE xxx
FROM  DISK = N&#039;E:\Backup\xxxxx\xxxxxx.bak&#039;
WITH  FILE = 1, 
MOVE N&#039;xxx99_Data&#039;
TO N&#039;E:\MSSQLDATA\exercises_edi.mdf&#039;, 
MOVE N&#039;xxx99_Log&#039;
TO N&#039;E:\MSSQLLOGS\exercises_edi.ldf&#039;, 
NOUNLOAD, 
REPLACE, 
STATS = 10
GO


The process got disconnected in the middle and still the database appears to be in &quot;restoring mode&quot;. How can I stop that mode and start again from scratch]]></description>
		<content:encoded><![CDATA[<p>Hi Everyone, </p>
<p>I tried to restore SQL Server 2000 xxx.bak database on another database. The code is </p>
<p>Use Master<br />
go</p>
<p>Alter Database xxx<br />
  SET SINGLE_USER With ROLLBACK IMMEDIATE</p>
<p>RESTORE DATABASE xxx<br />
FROM  DISK = N&#8217;E:\Backup\xxxxx\xxxxxx.bak&#8217;<br />
WITH  FILE = 1,<br />
MOVE N&#8217;xxx99_Data&#8217;<br />
TO N&#8217;E:\MSSQLDATA\exercises_edi.mdf&#8217;,<br />
MOVE N&#8217;xxx99_Log&#8217;<br />
TO N&#8217;E:\MSSQLLOGS\exercises_edi.ldf&#8217;,<br />
NOUNLOAD,<br />
REPLACE,<br />
STATS = 10<br />
GO</p>
<p>The process got disconnected in the middle and still the database appears to be in &#8220;restoring mode&#8221;. How can I stop that mode and start again from scratch</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hitesh</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-163189</link>
		<dc:creator><![CDATA[Hitesh]]></dc:creator>
		<pubDate>Mon, 29 Aug 2011 11:28:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-163189</guid>
		<description><![CDATA[Dear All,

My sql server database goes to recovery mode on every 2-3 hours. current database size is 3173 MB.

Could you please any one help to resolve this?

Thanks]]></description>
		<content:encoded><![CDATA[<p>Dear All,</p>
<p>My sql server database goes to recovery mode on every 2-3 hours. current database size is 3173 MB.</p>
<p>Could you please any one help to resolve this?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jasminder</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-151854</link>
		<dc:creator><![CDATA[Jasminder]]></dc:creator>
		<pubDate>Sat, 30 Jul 2011 17:04:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-151854</guid>
		<description><![CDATA[I have restored Database with No recovery option , its showing in Restoring mode seems like hanged in Restoring Mode i wanna bring it to Standby mode

how to achieve it]]></description>
		<content:encoded><![CDATA[<p>I have restored Database with No recovery option , its showing in Restoring mode seems like hanged in Restoring Mode i wanna bring it to Standby mode</p>
<p>how to achieve it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER – Database Worst Practices – New Town and New Job and New Disasters Journey to SQLAuthority</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-147580</link>
		<dc:creator><![CDATA[SQL SERVER – Database Worst Practices – New Town and New Job and New Disasters Journey to SQLAuthority]]></dc:creator>
		<pubDate>Tue, 12 Jul 2011 01:33:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-147580</guid>
		<description><![CDATA[[...] Restore Sequence and Understanding NORECOVERY and RECOVERY [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Restore Sequence and Understanding NORECOVERY and RECOVERY [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-146197</link>
		<dc:creator><![CDATA[Mike]]></dc:creator>
		<pubDate>Tue, 05 Jul 2011 17:10:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-146197</guid>
		<description><![CDATA[A portion of my reply was removed when I posted.

The command syntax is  
RESTORE DATABASE dbname WITH RECOVERY

where dbname is the name of the database you are recovering.]]></description>
		<content:encoded><![CDATA[<p>A portion of my reply was removed when I posted.</p>
<p>The command syntax is<br />
RESTORE DATABASE dbname WITH RECOVERY</p>
<p>where dbname is the name of the database you are recovering.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-146195</link>
		<dc:creator><![CDATA[Mike]]></dc:creator>
		<pubDate>Tue, 05 Jul 2011 17:08:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-146195</guid>
		<description><![CDATA[A best practice is to restore all log files with NORECOVERY.
Then, follow that with:

restore database  with recovery

Microsoft suggests this practice to prevent accidental recovery before all logs are restored.]]></description>
		<content:encoded><![CDATA[<p>A best practice is to restore all log files with NORECOVERY.<br />
Then, follow that with:</p>
<p>restore database  with recovery</p>
<p>Microsoft suggests this practice to prevent accidental recovery before all logs are restored.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: siraj</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-132498</link>
		<dc:creator><![CDATA[siraj]]></dc:creator>
		<pubDate>Mon, 02 May 2011 10:48:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-132498</guid>
		<description><![CDATA[Which mode i can use when differential back up ?
recovery or no recovery]]></description>
		<content:encoded><![CDATA[<p>Which mode i can use when differential back up ?<br />
recovery or no recovery</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Savoy</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-120855</link>
		<dc:creator><![CDATA[Savoy]]></dc:creator>
		<pubDate>Sat, 26 Feb 2011 17:33:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-120855</guid>
		<description><![CDATA[Thanks Very Much you always support us Mr pinal]]></description>
		<content:encoded><![CDATA[<p>Thanks Very Much you always support us Mr pinal</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vicky</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-103575</link>
		<dc:creator><![CDATA[vicky]]></dc:creator>
		<pubDate>Fri, 03 Dec 2010 10:58:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-103575</guid>
		<description><![CDATA[Hi,


I have current Live server which from now I want to use as Secondary for Log shipping. and then setup a new server as Primary.
But I don&#039;t know how to convert current live to take in NoRecovery Mode without data loss.

I am very confused in this.


Thanks!]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have current Live server which from now I want to use as Secondary for Log shipping. and then setup a new server as Primary.<br />
But I don&#8217;t know how to convert current live to take in NoRecovery Mode without data loss.</p>
<p>I am very confused in this.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER – Fix : Error : 3117 : The log or differential backup cannot be restored because no files are ready to rollforward Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-63381</link>
		<dc:creator><![CDATA[SQL SERVER – Fix : Error : 3117 : The log or differential backup cannot be restored because no files are ready to rollforward Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Sun, 21 Mar 2010 01:31:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-63381</guid>
		<description><![CDATA[[...] Similar Post: SQL SERVER – Restore Sequence and Understanding NORECOVERY and RECOVERY [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Similar Post: SQL SERVER – Restore Sequence and Understanding NORECOVERY and RECOVERY [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ravi</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-62185</link>
		<dc:creator><![CDATA[ravi]]></dc:creator>
		<pubDate>Thu, 04 Mar 2010 15:00:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-62185</guid>
		<description><![CDATA[Hi Pinal,

yes i understand i cant use standby clause. Currently my db full backup restored using recovery mode so that the users can access the db after restoration. This happens on a weekend. Now we are unable to restore the  daily transactional logs as the DB is in the recovery mode. In this scenario we have following questions
1. how can we change the mode of the DB to No recovery?
2. Is there anyother way that we can restore the transaction logs when the DB is in recovery mode?
3. From some of the article i found out that, the transaction logs should be restored with &quot;no Recovery&quot; and the final transaction log should be restored with &quot;Recovery&quot;]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>yes i understand i cant use standby clause. Currently my db full backup restored using recovery mode so that the users can access the db after restoration. This happens on a weekend. Now we are unable to restore the  daily transactional logs as the DB is in the recovery mode. In this scenario we have following questions<br />
1. how can we change the mode of the DB to No recovery?<br />
2. Is there anyother way that we can restore the transaction logs when the DB is in recovery mode?<br />
3. From some of the article i found out that, the transaction logs should be restored with &#8220;no Recovery&#8221; and the final transaction log should be restored with &#8220;Recovery&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-62181</link>
		<dc:creator><![CDATA[Pinal Dave]]></dc:creator>
		<pubDate>Thu, 04 Mar 2010 13:56:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-62181</guid>
		<description><![CDATA[Hello Ravi,

You can not use WITH STANDBY clause to restore a SQL Server 2000 database in SQL Server 2005.
You would have to upgrade the source server to 2005.

Regards,
Pinal Dave]]></description>
		<content:encoded><![CDATA[<p>Hello Ravi,</p>
<p>You can not use WITH STANDBY clause to restore a SQL Server 2000 database in SQL Server 2005.<br />
You would have to upgrade the source server to 2005.</p>
<p>Regards,<br />
Pinal Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ravi</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-62169</link>
		<dc:creator><![CDATA[ravi]]></dc:creator>
		<pubDate>Thu, 04 Mar 2010 12:28:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-62169</guid>
		<description><![CDATA[Hi Pinal Dave,

We have a Production DB Server (SQL Server 2000) and Reporting DB Server  (SQL Server 2005)
Earlier both servers were having SQL 2000. But now they have upgraded Reporting DB Server to SQL 2005. 
Backup Process – We have a process which syncs 5 databases between Production and Reporting. Complete restore is taken on a weekly basis (Sunday) and transaction logs are taken on a daily basis.

After upgradation of Reporting server to SQL Server 2005, backup process is not running as expected.
We were able to restore the complete backup successfully  which happens weekly. But having some issues while restoring transaction logs.

While trying to restore the database and transaction logs , we have 3 status modes:
                Recovery             :               We can’t use it, as it does not allow to restore transaction logs. If transaction logs are not there, we can use it very well for complete backup.
                NoRecovery       :               It can be used to restore but again database is no useable. It will be in recovery mode.
                StandBy               :               In the old reporting server(SQL 2000), they were using StandBy mode.
     It is read-only mode. But we are not able to use it as it says a message “This backup cannot be restored using WITH STANDBY because a database upgrade 
     is needed. Reissue the RESTORE without WITH STANDBY.” 
    As backup is from SQL 2000, it can’t be restored on SQL 2005.

We have restored the complete backup which was done using “recovery” mode. If complete backup is done in “recovery” mode, it is not restoring transaction logs. 

Could you please help me out in resolving this issue]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal Dave,</p>
<p>We have a Production DB Server (SQL Server 2000) and Reporting DB Server  (SQL Server 2005)<br />
Earlier both servers were having SQL 2000. But now they have upgraded Reporting DB Server to SQL 2005.<br />
Backup Process – We have a process which syncs 5 databases between Production and Reporting. Complete restore is taken on a weekly basis (Sunday) and transaction logs are taken on a daily basis.</p>
<p>After upgradation of Reporting server to SQL Server 2005, backup process is not running as expected.<br />
We were able to restore the complete backup successfully  which happens weekly. But having some issues while restoring transaction logs.</p>
<p>While trying to restore the database and transaction logs , we have 3 status modes:<br />
                Recovery             :               We can’t use it, as it does not allow to restore transaction logs. If transaction logs are not there, we can use it very well for complete backup.<br />
                NoRecovery       :               It can be used to restore but again database is no useable. It will be in recovery mode.<br />
                StandBy               :               In the old reporting server(SQL 2000), they were using StandBy mode.<br />
     It is read-only mode. But we are not able to use it as it says a message “This backup cannot be restored using WITH STANDBY because a database upgrade<br />
     is needed. Reissue the RESTORE without WITH STANDBY.”<br />
    As backup is from SQL 2000, it can’t be restored on SQL 2005.</p>
<p>We have restored the complete backup which was done using “recovery” mode. If complete backup is done in “recovery” mode, it is not restoring transaction logs. </p>
<p>Could you please help me out in resolving this issue</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pramod</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-62074</link>
		<dc:creator><![CDATA[pramod]]></dc:creator>
		<pubDate>Wed, 03 Mar 2010 10:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-62074</guid>
		<description><![CDATA[It means a read only operational database is nothing but a database in stand by mode.]]></description>
		<content:encoded><![CDATA[<p>It means a read only operational database is nothing but a database in stand by mode.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-60883</link>
		<dc:creator><![CDATA[Pinal Dave]]></dc:creator>
		<pubDate>Tue, 09 Feb 2010 14:28:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-60883</guid>
		<description><![CDATA[Hello Rashmi,

A database in recovey mode can be made accessible using STANDBY option. This option is usually used in log shipping to make the secondary database available.

Regards,
Pinal Dave]]></description>
		<content:encoded><![CDATA[<p>Hello Rashmi,</p>
<p>A database in recovey mode can be made accessible using STANDBY option. This option is usually used in log shipping to make the secondary database available.</p>
<p>Regards,<br />
Pinal Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashmi</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-60843</link>
		<dc:creator><![CDATA[Rashmi]]></dc:creator>
		<pubDate>Mon, 08 Feb 2010 13:25:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-60843</guid>
		<description><![CDATA[Hi Pinal,

When a transaction log recovery is running on the database with recovery mode, can th database be accessible to other users, for example can we fire a select query to the database? If yes then what is the process to do so? Since, we tried that when we were running the recovery on the DB and we parallely fired a select query, the recovery got aborted.

Please suggest.

Our aim is that when we are restoring the transaction log the database should be accessible to the users.

Thanks in advance!!]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>When a transaction log recovery is running on the database with recovery mode, can th database be accessible to other users, for example can we fire a select query to the database? If yes then what is the process to do so? Since, we tried that when we were running the recovery on the DB and we parallely fired a select query, the recovery got aborted.</p>
<p>Please suggest.</p>
<p>Our aim is that when we are restoring the transaction log the database should be accessible to the users.</p>
<p>Thanks in advance!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-60738</link>
		<dc:creator><![CDATA[Pinal Dave]]></dc:creator>
		<pubDate>Fri, 05 Feb 2010 17:43:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-60738</guid>
		<description><![CDATA[Hello Rashmi,

Once a database converted in RECOVERY mode, no more transaction log backup can be restored. You can not set a database back to NORECOVERY mode.
So to resotre more transactional log backups keep the database in NORECOERY mode.

Regards,
Pinal Dave]]></description>
		<content:encoded><![CDATA[<p>Hello Rashmi,</p>
<p>Once a database converted in RECOVERY mode, no more transaction log backup can be restored. You can not set a database back to NORECOVERY mode.<br />
So to resotre more transactional log backups keep the database in NORECOERY mode.</p>
<p>Regards,<br />
Pinal Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashmi</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-60700</link>
		<dc:creator><![CDATA[Rashmi]]></dc:creator>
		<pubDate>Fri, 05 Feb 2010 09:20:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-60700</guid>
		<description><![CDATA[I have to restore transcation logs to a secondary database every 30 minutes.Can i restore a transaction log backup when the database is in RECOVRY mode. ?  i dont want to set the database in NORECOVERY Mode each time i carry out the restoration process.]]></description>
		<content:encoded><![CDATA[<p>I have to restore transcation logs to a secondary database every 30 minutes.Can i restore a transaction log backup when the database is in RECOVRY mode. ?  i dont want to set the database in NORECOVERY Mode each time i carry out the restoration process.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ahmed</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-60603</link>
		<dc:creator><![CDATA[Ahmed]]></dc:creator>
		<pubDate>Wed, 03 Feb 2010 11:38:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-60603</guid>
		<description><![CDATA[Thanks for the reply]]></description>
		<content:encoded><![CDATA[<p>Thanks for the reply</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-60570</link>
		<dc:creator><![CDATA[Pinal Dave]]></dc:creator>
		<pubDate>Tue, 02 Feb 2010 18:05:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-60570</guid>
		<description><![CDATA[Hello Ahmad,

A running database con not be changed to standby mode. Only a data in no-recovery state can be moved to standby mode. This is an option that is specified while restoring a database or transaction log.

Regards,
Pinal Dave]]></description>
		<content:encoded><![CDATA[<p>Hello Ahmad,</p>
<p>A running database con not be changed to standby mode. Only a data in no-recovery state can be moved to standby mode. This is an option that is specified while restoring a database or transaction log.</p>
<p>Regards,<br />
Pinal Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ahmed</title>
		<link>http://blog.sqlauthority.com/2009/07/15/sql-server-restore-sequence-and-understanding-norecovery-and-recovery/#comment-60547</link>
		<dc:creator><![CDATA[Ahmed]]></dc:creator>
		<pubDate>Tue, 02 Feb 2010 10:41:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5895#comment-60547</guid>
		<description><![CDATA[How to change online db to standby mode]]></description>
		<content:encoded><![CDATA[<p>How to change online db to standby mode</p>
]]></content:encoded>
	</item>
</channel>
</rss>
