Sql-server – SQL Replication groups in Windows failover clusters RRS feed

failoversql server

I have a scenario where there is a Cluster of 2 Windows servers that have SQL Standard. Between those servers is replication, and we need to use replication groups for each database, what is the best scenario and is it better to use DFS replication or SQL replication?

Thank you in advance

Best Answer

I believe, DFS replication is meant for files synchronization not for the databases. consider following options as database solutions/features in SQL Server.

SQL FCI
Since you already have SQL FCI in-place, the databases and data (program files) related to SQL Server are already in shared location which can be accessible to both nodes.

Availability Groups
Unlike FCI, availability groups hosted by stand-alone SQL instances, each instances called as replica, every replica maintains their own copy of databases and every change in the database replicated all database copies across replicas within a group. you can have 8 replicas, required enterprise license. WSFC required for auto-fail-over purpose.

Log Shipping
Log shipping works based on scheduled backups, which periodically backups the changes on primary server, secondary server copies backup files and restores regularly as per defined schedule.

SQL Replication
Above options considered as high availability solutions, but replication is something used for copying and distributing the database's objects