1

Possible Duplicate:
Can you help me with my software licensing question?

How many servers can I install SQL Server 2008 R2 Standard Edition on? I'd like to set up a backup server in case my main one dies. I'm not too familiar with what SQL Server Failover actually does. I'd prefer that if the main server dies I'd like to restore the database onto the backup server manually from a backup and switch over to the backup server. Is that possible with the Standard Edition or would I actually have to buy two Standard Editions?

Maybe this is what really Failover is, but I'm not too clear on what it actually does. I've done some reading on it, but I'm still confused.

Jeff Stock
  • 135
  • 1
  • 5

1 Answers1

2

SQL Server Failover Clustering refers to a configuration where you install identical instances of Microsoft SQL Server on 2 or more nodes in a Windows Failover Cluster, place your database and log files on a clustered disk and register the SQL Server Service in the same Application Group as a clustered network name and IP address. When one physical server (cluster node) fails, or gets rebooted, the SQL Server instance is brought online on one of the other nodes and you can quickly reconnect to your database.

A configuration like this ensures high-availability, but has nothing to do with manually restoring the databases in case of a failure

If you only use one SQL Instance at any one time (a so-called Active/Passive failover cluster configuration), you only need one license.

Read more on SQL Server Failover Clustering here: http://msdn.microsoft.com/en-us/library/ms189134.aspx