Home Forums SQL Server 2008 SQL Server 2008 - General What, if any, is the best type of replication for implementing on hundreds of databases on one server? RE: What, if any, is the best type of replication for implementing on hundreds of databases on one server?

  • tomes12 (2/22/2013)


    To add one more level of complexity, we have 2 production clusters with 500 DBs EACH, and we would like to DR that to another location but to ONE Server if possible (mind you this would really just serve the disaster scenario, so the server probably won't be as powerful as those on Production) ?

    Do you think this changes anything somehow?

    Thanks,

    It all come down to how much data goes into the log files, so you need to find that out first.

    Unless your DR server is really underpowered, you'll have network speed issue before you have restore speed issue.

    If you do log shipping with 2 source servers, you'll have to make sure you have no DB name conflict or login name conflict.

    On a side note, avoid copying files around, backup directly to the DR server (trough a share) or to a network share and then restore directly from there. Copying files around in windows might bring it's own memory issues (especially if you have big files).

    And don't forget to synchronize your logins and specific jobs (if any) 🙂