﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / Disaster Recovery / Database Design  / Disaster recovery plan / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Thu, 23 May 2013 03:38:18 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Disaster recovery plan</title><link>http://www.sqlservercentral.com/Forums/Topic960026-384-1.aspx</link><description>hi,you can try to replication method . It can instantly take the backup</description><pubDate>Thu, 06 Dec 2012 12:34:22 GMT</pubDate><dc:creator>moh2it</dc:creator></item><item><title>RE: Disaster recovery plan</title><link>http://www.sqlservercentral.com/Forums/Topic960026-384-1.aspx</link><description>Is your log shipping server in the same office as your primary server? If so you may need an offsite backup in case of flood, fire, terrorist attack.</description><pubDate>Mon, 07 Mar 2011 16:16:18 GMT</pubDate><dc:creator>djordan 4543</dc:creator></item><item><title>RE: Disaster recovery plan</title><link>http://www.sqlservercentral.com/Forums/Topic960026-384-1.aspx</link><description>I think you're confused a little on log shipping.The way log shipping works on the primary- Make a full backup- Make log backups- Make periodic full backupsIt just runs.On the secondary:- Restore full backup with NORECOVERY- copy logs from the primary every xx time (hours, minutes, days)- restore logs with NORECOVERY after yyy delay.At any point in time, the secondary ought to be fairly close to the primary in terms of data updates. Some people restore logs right away, maybe copying them every 5 minutes. In this case, the secondary typically has one log to restore in the event the primary fails.Some people delay the log restores by an hour, to catch any issues on the primary (like a delete without a WHERE). In this case, you'd need to restore all the log backups you make in that hour to catch up.There is not automatic switchover for clients, unlike for mirroring. So you need to "redirect" all clients to the secondary server. If you use the IP or Windows host name, then each client has to change that. If you use DNS, you can change the host entry, but you might need to flush the entries on clients. You could rename the secondary to the primary as well.No matter what, you might have network ARP issues as well, or other items that you have to flush from the caches.</description><pubDate>Fri, 17 Sep 2010 10:14:34 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>RE: Disaster recovery plan</title><link>http://www.sqlservercentral.com/Forums/Topic960026-384-1.aspx</link><description>then what is the meaning of your secondary if you have to restore this much?</description><pubDate>Fri, 17 Sep 2010 09:38:42 GMT</pubDate><dc:creator>crazy4sql</dc:creator></item><item><title>RE: Disaster recovery plan</title><link>http://www.sqlservercentral.com/Forums/Topic960026-384-1.aspx</link><description>Okk..Why just the last log has to be restored? Not the logs before that??Assume, i have a full backup nightly and have transaction logs every 15 during day time.Then, if i want to restore the database at any time during day, then i should restore the last .bak file and then all the transaction logs since the backup time to the last transaction log sequentially...Is it fine?Regards,Sushant</description><pubDate>Fri, 17 Sep 2010 09:36:08 GMT</pubDate><dc:creator>SKYBVI</dc:creator></item><item><title>RE: Disaster recovery plan</title><link>http://www.sqlservercentral.com/Forums/Topic960026-384-1.aspx</link><description>hi Sushant, copying backup file to safe location I suggested for , incase something happen your secondary and get corrupted.Anyway, yes so to bring your seconday as primary, you need to restore the last log with recovery which will make your database as opertation on secondary.But before last log restoration, just make sure that the one you restoring is definately the last and final log from primary.</description><pubDate>Fri, 17 Sep 2010 09:20:33 GMT</pubDate><dc:creator>crazy4sql</dc:creator></item><item><title>RE: Disaster recovery plan</title><link>http://www.sqlservercentral.com/Forums/Topic960026-384-1.aspx</link><description>@ ashishWhat is the use of copying backups to a safe place when already my log shipping is in place.If some disaster happens to my production server, then can't I restore the databases on the secondary server where logs are being shipped.?What can be the procedure to move the production server to the log shipped server.The databases on the log shipped server are in stand by/read only mode so i should restore the transaction logs there so that the databases become usable?Regards,Sushant</description><pubDate>Fri, 17 Sep 2010 09:00:15 GMT</pubDate><dc:creator>SKYBVI</dc:creator></item><item><title>RE: Disaster recovery plan</title><link>http://www.sqlservercentral.com/Forums/Topic960026-384-1.aspx</link><description>[quote][b]SKYBVI (7/28/2010)[/b][hr]I have a production server and a log shipping server which are acting as a primary and secondary server respectively in the log shipping setting. If I create a disaster recovery plan for my production server, what all steps should I include wrt to log shipping?[/quote]If secondary-server is off site then that's your DR platform - provided you have in place the network and security setup needed to switch your apps from Primary to Secondary site in case of a Disaster.T-Log backup as well as log shipping have to be in line with what the company is willing to loose in case of a disaster meaning, if the company is willing to loose the last 15 minutes of activity then T-Log backups have to occur every 15 minutes and logs have to be shipped immediately to secondary site.Last but not least, please do not forget to plan how are you going to move back from DR site to Primary site once the Disaster situation is remediated.</description><pubDate>Thu, 16 Sep 2010 07:52:38 GMT</pubDate><dc:creator>PaulB-TheOneAndOnly</dc:creator></item><item><title>RE: Disaster recovery plan</title><link>http://www.sqlservercentral.com/Forums/Topic960026-384-1.aspx</link><description>Also you can schedule the job which will copy your backups regulary to some safe place and can be used in time of recovery.</description><pubDate>Mon, 13 Sep 2010 01:58:37 GMT</pubDate><dc:creator>crazy4sql</dc:creator></item><item><title>RE: Disaster recovery plan</title><link>http://www.sqlservercentral.com/Forums/Topic960026-384-1.aspx</link><description>We have setup weekly full backup with daily diff. backup on the primary server. You can try the same.</description><pubDate>Mon, 13 Sep 2010 01:49:25 GMT</pubDate><dc:creator>Minaz</dc:creator></item><item><title>Disaster recovery plan</title><link>http://www.sqlservercentral.com/Forums/Topic960026-384-1.aspx</link><description>I have a production server and a log shipping server which are acting as a primary and secondary server respectively in the log shipping setting. If I create a disaster recovery plan for my production server, what all steps should I includewrt to log shipping?</description><pubDate>Wed, 28 Jul 2010 07:30:00 GMT</pubDate><dc:creator>SKYBVI</dc:creator></item></channel></rss>