Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 1.83 KB

change-transaction-safety-in-a-database-mirroring-session-transact-sql.md

File metadata and controls

47 lines (33 loc) · 1.83 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords
Change transaction safety (mirrored database)
Change the transaction safety attribute for a SQL Server database mirroring session using Transact-SQL.
MikeRayMSFT
mikeray
03/04/2017
sql
database-mirroring
how-to
transaction safety [SQL Server database mirroring]

Change Transaction Safety in a Database Mirroring Session (Transact-SQL)

[!INCLUDE SQL Server] Transaction safety is the attribute that controls the operating mode of the session. At any time, however, the database owner can change the transaction safety. By default, the level of transaction safety is set to FULL (synchronous operating mode).

Turning off transaction safety shifts the session into asynchronous operating mode, which maximizes performance. If the principal becomes unavailable, the mirror stops but is available as a warm standby (failover requires forcing service with possible data loss).

To turn on transaction safety

  1. Connect to the principal server.

  2. Issue the following Transact-SQL statement:

    ALTER DATABASE <database> SET PARTNER SAFETY FULL  
    

    where <database> is the name of the mirrored database.

To turn off transaction safety

  1. Connect to the principal server.

  2. Issue the following statement:

    ALTER DATABASE <database> SET PARTNER SAFETY OFF  
    

    where <database> is the mirrored database.

See Also

ALTER DATABASE Database Mirroring (Transact-SQL)
Database Mirroring Operating Modes