11
votes
Accepted
Are "Always On Failover Cluster Instances" and "SQL Server Failover Clustering" the same thing?
Yes it is the same thing. See section 3 which explains this term.
First lets get few terms straight.
Windows Server Failover Clustering
A Windows Server Failover Clustering (WSFC) cluster is a ...
8
votes
Accepted
Always On Primary Replica On Prem, Secondary Replica On Azure
We only want to have 2 replicas, one on-prem and one on azure. Is this possible?
Yes, it's possible. There are extra items you'll want to think about such as having a domain controller (if ad-...
4
votes
Stored Procedure on a read-only AlwaysOn Availability Group replica
A possible workaround would be; Just create a database in the secondary instance and then create the stored procedures accessing the data from the databases being replicated.
EDIT: But this database ...
3
votes
File Share Witness location
For this setup it technically matters but in the end it really won't. The long and the short of it is it should be at your primary site since that has 75% of all resources.
Why it doesn't technically ...
3
votes
Accepted
Listener IP not changing after failover
This behavior occurs due to the time to live (TTL) on the DNS records. A client does not do a DNS lookup every time it attempts to connect to a server. It first looks in its DNS cache to see if ...
3
votes
Accepted
File Share Witness with 4 Node Cluster
No, the cluster will not go down until a node cannot form quorum. Assuming all four nodes have a quorum vote, there are five possible votes. Accordingly a node will have to get three votes to ...
3
votes
Accepted
Cluster IP's under Access Point for Administering the Cluster
Please see No such thing as a Heartbeat Network and Everything You Know About Clustering is Wrong. These don't really answer your question, but perhaps will change the question to, "Do we need a ...
3
votes
Does SQL Server route connections to a secondary replica which has commit mode as synchronous in case of an AG with multiple secondary nodes?
It will depend on your routing list.
SQL Server 2104 and SQL 2012 read-only routing directed traffic to the first available replica in the routing list, unless it was not accessible, and then it ...
2
votes
Accepted
A question about multisite Always On design
In traditional Always On Availability Groups, all replication traffic comes from the primary replica. If you have two replicas in a remote data center, they will both be updated from the primary ...
2
votes
How to Start DB2 10.5 HADR on the Standby Database
I got the exactly same error message and logs in db2diag.log, what I did to solve this issue is don't do the roll forwarding after the restore, must keep the restored DB in roll forwarding pending ...
2
votes
Making Production database as Publisher and Distributor for Snasphot Replication
Since your database is 100GB, you can use backup and restore method with compression (make sure Instant file Initialization is enabled).
Another approach will be to use logshipping with delaying the ...
2
votes
Automatic fail over in Always on availability group with 3 Node in synchronous mode and 1 Node in Asynchronous Mode
My question is if the primary goes down which node among the remaining 2 replica will be failed over.
The node that is set to Synchronous with Automatic failover will be the chosen one to failover ...
2
votes
Accepted
What happens when the same application from different server tries to connect to the always on primary server
From a technical standpoint, there are no problems with multiple applications, running on multiple different machines, connecting to the same SQL Server instance.
If you experience the failover ...
2
votes
Accepted
Stored Procedure on a read-only AlwaysOn Availability Group replica
Stored procedures are contained in databases, so if the database you are creating the stored procedure on is in the availability group, you will create it on the primary--it would be impossible to ...
2
votes
Split brain scenario
In this scenario you generally cannot prevent the split brain. You may have no knowledge about the internal state of the primary data center.
The failover and recovery process is documented here WSFC ...
2
votes
Accepted
How to make AG a proper DR solution (single IP and sync logins/jobs)?
If there was a clustering setup then 1 IP address could have been used that will auto connect to the active sql server. In absence of clustering, and in case of the above AG setup, is it possible for ...
2
votes
Accepted
Log Shipping or Always on as DR for SQL Failover CLuster
My experience is that an AlwaysOn high availability group, HAG, is easier to maintain than log shipping. Lets set some variables for our scenario.
1.) Your version and edition of SQL Server is SQL ...
1
vote
How to check hadr state (suspend or resume) for a database?
Try it. Synchronization_state_desc and synchronization_health_desc columns.
SELECT ag.name ag_name ,
ar.replica_server_name ,
adc.database_name ,
hdrs.database_state_desc ,
...
1
vote
Latency with hadr_capture_log_block in SQL Server AlwaysOn AG
The question is what the root cause ?
Currently there is insufficient information to make that determination. None of us have your data, but assuming 249ms of time for a single log block (which is ...
1
vote
Meaning of LFL and XHDR in Db2
This is too long for a comment so I'll add an answer. XHDR seems to be the header structure of the log file. I found this info here
As for LFL I have not found anything which makes me wonder whether ...
1
vote
How do you configure a 4-node AlwaysOn cluster to have two listeners?
is there a way to configure to have two listeners
Sort of, but it's unusual. The more normal practice is to have a single AG Listener, with read-only routing configured. That way everyone connects ...
1
vote
Accepted
How To Prevent Live Servers From Detecting a Forced Failover?
Snapshot
Assuming the use of VMs, take a snapshot of the DR server after the source site is disconnected. I might recommend shutting down the server first just so the snapshot is in a good, clean ...
1
vote
Accepted
DBCC check on Always On Secondary Replica
Checkdb should be run on both primary and secondary replicas. Normally for big databases and where you have busy system and you cannot afford to run checkdb on both replicas in one go specially on ...
1
vote
Domain Controller on Multi Subnet Always on Availability Group
Suppose if the Primary site goes down the server on the DR will still be able to used cached credentials.
Assuming the DCs and the rest of your infrastructure will fail over to DR by some other ...
1
vote
Accepted
Listener Port 1433 for Always on Availability Group
If the listener port is 1433 and the clients also gets connected through port 1433 to the reporting server that is part of the Availability group will there be any port conflict.
If 1433 is just ...
1
vote
Read only replica part of always on availability group for Reporting
My questions is will there be any problem if the read only replica for reporting is included as part of the always on availability group instead of setting Transaction Replication with the Listener.
...
1
vote
Accepted
Making Production database as Publisher and Distributor for Snasphot Replication
It depends on your hardware. I've seen a table in the 70GB range take approximately 20 minutes to create a snapshot. Longer on older hardware. If anything else is being done, it can result in blocking....
1
vote
Cluster Validation on Remote Node
I would like to run a validation test on that node (dr site). Will this affect the other 2 nodes which are in synchronous mode?
No not the data flow as such. You can run cluster validation of all the ...
1
vote
Log Shipping or Always on as DR for SQL Failover CLuster
Log shipping is by far easier to maintain than an Availability Group for the scenario you described.
The ability to fail over back and forth quickly using an AG is great for high availability, but ...
1
vote
Removing Databases in Recovery Pending Status after AG group was removed
Pause the Availability Group node in Failover Cluster Manager, and then restart the SQL Server service on that node. The database will drop out of recovery pending mode and could be deleted.
Only top scored, non community-wiki answers of a minimum length are eligible
Related Tags
hadr × 43availability-groups × 24
sql-server × 22
clustering × 9
sql-server-2014 × 7
failover × 7
db2 × 6
high-availability × 6
sql-server-2012 × 5
log-shipping × 4
sql-server-2016 × 3
db2-luw × 3
network × 3
listener × 3
replication × 2
sql-server-2017 × 2
disaster-recovery × 2
stored-procedures × 1
restore × 1
ssms × 1
transaction-log × 1
windows-server × 1
sql-server-2019 × 1
storage × 1
ddl × 1