Mirroring vs Replication

前端 未结 3 1121
温柔的废话
温柔的废话 2020-12-29 10:59

How to decide whether to choose a Replication or Mirroring in SQL Server 2005 to provide data availabilty and performance at the same time.


To be more specific

3条回答
  •  自闭症患者
    2020-12-29 11:36

    It depends on the level (hot, warm, cold) of standby availability you require.

    Various mechanisms in SQL Server provide database-level redundancy, such as backup/restore, log shipping, and database mirroring (in SQL Server 2005 and later). Database mirroring is the only mechanism that provides a real-time, exact copy of the protected database with the guarantee of zero data loss (when the mirror is synchronized).

    Database mirroring operates in either synchronous or asynchronous mode. Under asynchronous operation, transactions commit without waiting for the mirror server to write the log to disk, which maximizes performance.

    This MS Whitepaper, Providing High Availability using Database Mirroring, covers a range of scenarios.

    You should probably read this TechNet article, Database Mirroring Best Practices and Performance Considerations.

提交回复
热议问题