Reputation: 375
I want to do mirroring on SQL Server. While mirroring is better, only Enterprise can do this and the licence cost is an issue. I can use SQL Server standard which allows DFS-Replication not mirroring.
As I need 2 SQL Servers - main and backup - and only one database on them - what would stop me using DFS-R as a solution? Can the database files be too large for DFS-R?
Upvotes: 0
Views: 689
Reputation: 89416
Mirroring is deprecated. You don't want to use it.
Standard Edition supports
Always On Basic Availability Groups provide a high availability solution for SQL Server from version 2016 and above on Standard Edition.
which are the replacement for Database Mirroring on Standard Edition. Or you can use
SQL Server Log shipping allows you to automatically send transaction log backups from a primary database on a primary server instance to one or more secondary databases on separate secondary server instances.
Upvotes: 1