replica of prod server

  • Hi,

    I am trying to create a replica of production server, so that we can divert some traffic. I am thinking of setting up mirroring and taking the database snapshots and making the data available for read only operations and for DR sites. Can we make the data continuously available during the snapshot process for read only operation? It's a high OLTP environment. Can snapshot replication/ Peer to Peer be used over here? We already have transactional replication in prod environment. Can we have both transactional and snapshot/peer to peer replication working together. If yes, what's the impact on prod server? We tried SAN replication but some reason the databases are going to suspect mode. Any thoughts??

  • any suggestions????

  • This document talks about replication and database mirroring (including information on trace flag 1448 which allows the log reader to replicate changes regardless of the mirroring state):

    http://download.microsoft.com/download/d/9/4/d948f981-926e-40fa-a026-5bfcf076d9b9/ReplicationAndDBM.docx

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • Hi,

    Log shipping to a secondary server is also an option . You can query on the secondary log shipping database as well. LS is also very easy to implement.

  • while restoring the database cannot be accessed in log shipping. Peer to Peer replication just works perfectly over here.

  • I agree with that. While restoring the transaction logs to the secondary server, the users will be disconnected from the secondary database. Although it is a good practice to setup the backup interval and copy/restore interval of the Logshipping setup same ( Eg. backup trans log every 30 mins , and restore to secondary server every 30 mins) It is not uncommon to setup the log shipping to Restore the Transaction logs only few times a day, so that users won't be kicked out of the restoring database.

    Drawbacks are:

    Doing so, you would not get an exact near Production copy of the database.

    Your Transaction log to be restored in the secondary database will take more time across the network since there will be more transactional log files.

Viewing 6 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic. Login to reply