To configure highly available and disaster resilient databases with SQL 2012 AlwaysOn, 3 servers will be used as show below In the Primary Data Center SQLDEV1 and SQLDEV2 will host synchronous replica of the databases and in the Secondary Data Center on SQLDEV3 an asynchronous replica will reside. To enable AlwaysOn, SQL Server must be installed on a node in the Windows Failover Cluster (WFC) (how to install 3-Node WFC on Windows Server 2012 see here ). SQL 2012 needs .NET 3.5. So the first step is to add .NET Framework 3.5 on each of the three servers. The next step is to install SQL 2012 on each of the servers. Even if these servers are part of the WFC the stand-alone installation is required (this WFC has no shared storage and this won't allow you to install SQL failover cluster). When SQL 2012 is installed we need to enable AlwaysOn and Named Pipes. In SQL Server Configuration Manager right-click on the SQL Ser...