Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
mirroring in sql server 2008 how it is done in simple way

What I have tried:

mirroring in sql server 2008 how it is done in simple way
Posted
Updated 21-Jun-16 18:25pm

Please try at least to do a minimal research of your own:
Database Mirroring (SQL Server)[^]
 
Share this answer
 
Database mirroring is the creation and maintenance of redundant copies of a database that involves two SQL Server instances on the same or different machines. One SQL Server instance acts as a primary instance called the principal, while the other is a mirrored instance called the mirror. There can be a third SQL Server instance that acts as a witness (special cases)
An Overview of Database Mirroring In SQL Server

It is highly recommend that you configure database mirroring during off-peak hours because configuration can impact performance. Before configuring database mirroring, take a full backup, transactional log backup on the principal server and restored it on the mirrored server with NORECOVERY option.
Take a look at this link Configure SQL Server Database Mirroring: Step By Step ~ SQL Server Citation it will show you step by step method to method to configure database mirroring in SQL Server.
 
Share this answer
 
Comments
dhirendrasahu 26-Oct-16 4:12am    
Thanks Daniel jones for solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900