We have configured 3 SQL server in an AlwaysOn Availability group (see here) Two servers (SQLDEV1 and SQLDEV2) are configured for automatic failover. To test how long it takes for SQL Server to fail over from SQLDEV1 to SQLDEV2 we connect to the availability group listener name (sqldevcluster1) and on the "Additional Connection Parameters" tab we need to add Multisubnetfailover=TRUE We can check the current status of the servers in the availability group with this query select rs . role_desc , rs . connected_state_desc , rs . synchronization_health_desc , cs . replica_server_name from sys . dm_hadr_availability_replica_states AS rs JOIN sys . dm_hadr_availability_replica_cluster_states as CS ON rs . replica_id = cs . replica_id and it returns If we connect to SQLDEV2 and initiate manual failover ALTER AVAILABILITY GROUP AG1 FAILOVER ; this statement takes 17 seconds to complete. And if we check the status of the a...