I'm trying to plan a SQL Server 2008 R2 2 node Active/Passive failover cluster.

Is it possible to set up multiple named instances running on the cluster? e.g.

sqlcluster
sqlcluster\demo
sqlcluster\dev

And could demo and dev share the same SAN LUN?

Thanks,

Kenny

link|improve this question

62% accept rate
feedback

2 Answers

up vote 0 down vote accepted

Yes you can have multiple instances on the same cluster.

No they can not share the same LUN. When SQL is clustered, the LUNs are dedicated to the specific instance.

link|improve this answer
Aha. I suppose that makes sense. Not challenging you on the storage question, but do you have a link to the documentation so I can educate myself on this? I've worked on clustered SQL instances but haven't had the chance to create any. – mfinni Aug 4 '11 at 19:14
Not one that I didn't write myself. Each SQL instance goes into it's own resource group. LUNs can't be shared across resource groups. Putting two instances into a single resource group (while possible) isn't supported. – mrdenny Aug 4 '11 at 19:27
Got it. So, it's technically possible, but not supported and a bad idea. – mfinni Aug 4 '11 at 20:31
Yep, pretty much. – mrdenny Aug 4 '11 at 22:37
feedback

Is it possible to set up multiple named instances running on the cluster?

Yes.

And could demo and dev share the same SAN LUN?

Yes, but depending on your IO performance, it might not be a good idea.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.