How to check DR database(disaster recovery) and production database in sync

  • We are performing a power down activity in our environment.So we made the DR server up.Now we need to sync up the databases after power up if any changes happened at DR site.How can we find out whether the two databases are in sync

  • You can look at the database mirroring monitor, or run this query (and ensure all mirroring databases are SYNCHRONIZED):

    select * from sys.database_mirroring

    where database_id > 4

    and mirroring_state NOT like '%NULL%'

Viewing 2 posts - 1 through 1 (of 1 total)

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