Portal Home > Knowledgebase > cPanel > Resume suspended mirror and others
Run the following on the principal server:Select appropriate database then...ALTER DATABASE database_nameSET PARTNER RESUME Others from the web How to manually fail over a database mirroring session?1. Connect to the principal server.
2. Set the database context to the master database.
3. ALTER DATABASE <database_name> SET PARTNER FAILOVERHow to Force Service in a Database Mirroring Session?1. Connect to the mirror server.
2. Issue the following statement.
3. ALTER DATABASE <database_name> SET PARTNER FORCE_SERVICE_ALLOW_DATA_LOSSHow to Resume a Database Mirroring Session?1. Connect to either partner.2. Issue the following T-SQL statement.
3. ALTER DATABASE <database_name> SET PARTNER RESUMEHow to pause a database mirroring session?1. Connect to either partner.
2. Issue the following T-SQL statement.
3. ALTER DATABASE <database_name> SET PARTNER SUSPEND
How to turn ON transaction safety?
1. Connect to the principal server.
2. Issue the following T-SQL statement.
3. ALTER DATABASE <database_name> SET PARTNER SAFETY FULLHow to turn OFF transaction safety?1. Connect to the principal server.
2. Issue the following statement.
3. ALTER DATABASE <database_name> SET PARTNER SAFETY OFF
How to remove Database Mirroring?1. Connect to either partner.
2. Issue the following T-SQL statement.
3. ALTER DATABASE <database_name> SET PARTNER OFFHow to Remove the Witness from a Database Mirroring Session?1. Connect to either partner.
2. Issue the following statement.
3. ALTER DATABASE <database_name> SET WITNESS OFF
Add to Favourites Print this Article