Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Administration
 DR test

Author  Topic 

kumar4700
Starting Member

2 Posts

Posted - 2009-12-02 : 10:07:25
I am asked to test disaster recovery test-point in time recovery

We have one production server(3 user databases), application users will connect to database via websites.

And recently took another server (DR server).

Do I need to set up logshipping for disaster recovery or just restore all databases in DR server and route the application users . Please let me know the steps . Kind of new to SQL Server.

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2009-12-02 : 11:13:57
We use database mirroring instead of log shipping.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog

"Let's begin with the premise that everything you've done up until this point is wrong."
Go to Top of Page

kumar4700
Starting Member

2 Posts

Posted - 2009-12-02 : 13:27:55
Thanks for your reply.

We have SQL Server 2005 std edition, can we use database mirroring. If so what service pack do we need to have?

How many servers we need to have for db mirroring, we don't want to loose any data
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2009-12-02 : 13:53:22
Database mirroring is available in standard edition. You should install service pack 3 since it has been around for quite a while and contains numerous bug fixes for previous builds.

You need a minimum of two SQL Server instances. We only use two. We do not use a witness. We use asynchronous database mirroring due to the performance lag of a two-phase commit on synchronous mirroring.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog

"Let's begin with the premise that everything you've done up until this point is wrong."
Go to Top of Page

johnboyd
Starting Member

9 Posts

Posted - 2009-12-13 : 11:17:03
quote:
Originally posted by tkizer

Database mirroring is available in standard edition. You should install service pack 3 since it has been around for quite a while and contains numerous bug fixes for previous builds.

You need a minimum of two SQL Server instances. We only use two. We do not use a witness. We use asynchronous database mirroring due to the performance lag of a two-phase commit on synchronous mirroring.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog

"Let's begin with the premise that everything you've done up until this point is wrong."




In real disaster, how much data you lose in Asynchronous mirroring?
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2009-12-13 : 12:37:57
Well it depends on far back the two are in synchronizing. At most times of the day, we are under a second between the two servers as seen by looking at the monitor. When the ALTER INDEX job runs to rebuild indexes, we do get a bit behind but it catches up quickly once the job is done.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog

"Let's begin with the premise that everything you've done up until this point is wrong."
Go to Top of Page
   

- Advertisement -