SQL Clustering Interview FAQs
What is the difference between SQL Server clustering methods: - Active/Active - Active/Passive Active/Active means that both nodes are active and accessing the shared disk resources, but are running independent instances. When a node fails, you need to be sure that the remaining node has the resources available to handle the additional databases that fail over. You can think of it like this. Node A has 1 database on it, and Node B has 1 database on it. Node A goes down, the resources fail over to Node B, and now Node B has 2 databases running on it. In an Active/Passive cluster, you would only have 1 database running on a single node at any given time. Node A is active with 1 DB, Node B is passive with no DBs. Node A goes down, the resources fail over to Node B. Node B is now active with 1 database running on it. I'm sure more experienced cluster admins or SQL admins will savage me for my terminology, but that's it in a nutshell. FAQ: What is the aliv...