Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need help in this scenario. We have one SQl server, I need to maintain two databases of this server in another physically far location. Just the exact copy not like failover. Just the same data so that if some thing happens on one, other should also be up but not like automatic failover or anything. Just to sync databases that whatever happened in primary should be synced with other. I am very confused that what should I use, replication, mirroring, log shipping.

Can anyone advice?

Thanks for help!

share|improve this question

3 Answers

up vote 3 down vote accepted

Replication does not maintain an identical copy of the database, it only replicates selected tables.

This leaves mirroring or log shipping:

  • Delay: Mirroring will keep the two replicas more close to the current master copies (will always try to be up to date, continuously). Log shipping has a built-in operational delay due to the log backup frequency, usually around 15-30 minutes or so.
  • Multiple copies: mirroring allows for exactly one replica copy. Log shipping allows for multiple copies.
  • Replica access: mirroring does not allow access to the replica. You can create database snapshots on the secondary server and the snapshots can be accesses. Log shipping allows read-only access to the replica copy, but will disconnect all users when applying the next backup log received (eg. every 15-30 minutes).
  • Ease of setup: this point is subjective, but I say log shipping is easier to set up (easier to understand)
  • Ease of operation: same as above, subjective, I would again say log shipping just because is easier to troubleshoot.
  • Security: log shipping requires file copy access, which requires a VPN or similar setup. Mirroring can work with certificate based security and traverse domains w/o trust, so it does not require a VPN.

Of course, you still have to make your own decision, based on your criteria.

share|improve this answer
Thanks much for reply! after reading lot about everything I also thought to go with log shipping. Thanks very much for explanation. – aDev Nov 30 '10 at 10:14

To the Above query, try to keep your SQL servers on the same port. Have that port openend on the Firewall and try to ping each the servers from one domain to another. This shopuld help. Try and revet if you are facing issues.

share|improve this answer

I have some problems in settings now. I have tested log shipping on same domain and it did work.

Bur for Live I need to setup in different domains and I don't know how to do that I need to create share but it's not working spent so many hour but still have problems. I have three problems.

  1. How I create this share folder for backup in different domains.

  2. When you add secondary in log shipping how I connect to SQL Server which is in different domain.

  3. I need to make current live Server as Seconday and new Server as primary by restoring a full backup of current Live. How I setup current live as secondary.

Can you give me some advices on that. Thanks much .

Regards

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.