Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Generally speaking, there are 2 types of SQL high availability clusters, namely Mirroring Cluster and Replication Cluster.

SQL Mirroring Cluster

Include Page
SQL
In a
Mirroring Cluster
, there is an active SQL database server and a passive database server. When the active database server is down for some reason, the cluster will fail over to the passive database server, and the passive database will become the active database server. In a Mirroring Cluster, only one database server is active at one time and the database operation is served from the active server only. In principle, data change in the active database is copied to the passive database in real time. 
SQL Mirroring Cluster

SQL Replication Cluster

Include Page
SQL Replication Cluster
SQL Replication Cluster
In a Replication Clusters, there are multiple SQL database servers and all of them are active at one time. Data change in any database is replicated to the other databases in real time.