Skip to main content

MS SQL Server Mirroring v/s MS SQL Always on

MS SQL Server Mirroring v/s MS SQL Always on

MS SQL Server Mirroring and Always On Availability Groups are both high-availability and disaster recovery solutions provided by Microsoft SQL Server, but they have some key differences:

SQL Server Mirroring:

  • MS SQL Server Mirroring is an older technology and has been deprecated in newer versions of SQL Server.
  • Mirroring works on a per-database basis, meaning that each database needs to be individually configured for mirroring.
  • It uses a principal and mirror server configuration, where the principal server handles client connections and the mirror server maintains a synchronized copy of the database.
  • Automatic failover is possible in high-safety mode with the help of a witness server, which monitors the availability of the principal server.
  • Mirroring supports synchronous and asynchronous replication modes.
  • Mirroring is limited to two servers and does not provide read scalability.
  • Mirroring is available in the Standard and Enterprise editions of SQL Server.
  • Mirroring operates at the database level and provides database-level failover.
  • It allows for automatic failover, but only in the case of synchronous mode with a witness server.
  • Mirroring requires a separate server instance to act as the mirror server, which operates in a standby mode and maintains an identical copy of the principal database.


Always On Availability Groups:

  • Always On Availability Groups is available in the Enterprise edition of SQL Server.
  • Always On Availability Groups is the recommended high-availability and disaster recovery solution for SQL Server.
  • Availability Groups operate at the database level and can include multiple databases within a single group.
  • It allows for more advanced configurations, such as multi-site fail-over clusters and read scalability with readable secondary replicas.
  • Automatic fail-over is supported in both synchronous and asynchronous replication modes, and no witness server is required.
  • Availability Groups provide enhanced monitoring, backup capabilities, and integration with Windows Server Failover Clustering.
  • Availability Groups support multiple secondary replicas, enabling read-only access to secondary replicas for offloading reporting or backups.
  • It provides more granular control over fail-over, allowing for automatic or manual fail-over at the availability group level.

    AWS recommended architecture for SQL Server with Amazon RDS:



Ref.:

https://docs.aws.amazon.com/images/dms/latest/sbs/images/sbs-aws-dms-listener-ip-connection.png

https://docs.aws.amazon.com/dms/latest/sbs/chap-manageddatabases.sqlserveralwayson.ag.html


In summary, while SQL Server Mirroring is a simpler solution limited to two servers and deprecated in newer versions of SQL Server. Always On Availability Groups provide more advanced features, scalability, and flexibility for high availability and disaster recovery scenarios. It is recommended to use Always On Availability Groups for new SQL Server deployments.

In summary, SQL Server Mirroring is a simpler and more basic form of high availability and disaster recovery. However, it's important to note that SQL Server Mirroring has been deprecated by Microsoft, and Always On Availability Groups is the recommended solution for achieving high availability and disaster recovery in modern versions of SQL Server.

Comments

Popular posts from this blog

MySQL InnoDB cluster troubleshooting | commands

Cluster Validation: select * from performance_schema.replication_group_members; All members should be online. select instance_name, mysql_server_uuid, addresses from  mysql_innodb_cluster_metadata.instances; All instances should return same value for mysql_server_uuid SELECT @@GTID_EXECUTED; All nodes should return same value Frequently use commands: mysql> SET SQL_LOG_BIN = 0;  mysql> stop group_replication; mysql> set global super_read_only=0; mysql> drop database mysql_innodb_cluster_metadata; mysql> RESET MASTER; mysql> RESET SLAVE ALL; JS > var cluster = dba.getCluster() JS > var cluster = dba.getCluster("<Cluster_name>") JS > var cluster = dba.createCluster('name') JS > cluster.removeInstance('root@<IP_Address>:<Port_No>',{force: true}) JS > cluster.addInstance('root@<IP add>,:<port>') JS > cluster.addInstance('root@ <IP add>,:<port> ') JS > dba.getC...

MySQL 5.7 Install | Configure MySQL | Configure MySQL Replication | Configure systemd for single instance

Install MySQL 5.7 Community Edition on Linux: #yum install mysql80-community-release-el7-1.noarch.rpm #yum install mysql-community-server #yum install perl-DBD-MySQL-4.023-6.el7.x86_64.rpm #yum install percona-release-0.1-4.noarch.rpm Increase no. of open files: Edit file /etc/security/limits.conf and includes as follows, which will increase no of open files for mysql user to 65535 from 1024 which is default. excute ulimit -a after sudo to mysql, if you are logged in exit and login again then and then only you will be able to see it. mysql              soft     nofile           65535 mysql             hard     nofile           65535 Ref.: https://dev.mysql.com/doc/refman/8.0/en/linux-installation-yum-repo.html https://jinyuwang.weebly.co...

Create MySQL database with hyphen

Create MySQL database with hyphen: If you are trying to create MySQL database with hyphen " - " in the name such as test-db and get error  " your MySQL server version for the right syntax to use near '-db' at line" then you might be wondering how to get it done as your business require MySQL database name with hyphen " - "  Here is the fix, use escape character " ` " before and after database name such as `test-db` and you will be able to create database with hyphen. CREATE DATABASE `test-db`;