I have a SQL server 2008 R2 database with 2 schemas, i need to enhance the performance of the server so we plan to cluster the DB, we will have 2 nodes . is it possible to separate each scheme so each node will have one schema
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
No. Simple like that. The unit of separation is a database, not a schema. And clusters are active/passive. |
|||
|
|
|
You can build an active/active cluster, which with SQL Server basically means you have two separate SQL instances with it's own name an virtual IP address. Each instance can hold one of your schemas. Some caveats to keep in mind:
There are good guides on the net how to configure this, it's a bit more complex than a normal active/passive cluster. |
|||
|
|