Failover Clustering FAQ
Is the use of software fault-tolerant disk sets for cluster storage supported?
http://support.microsoft.com/support/kb/articles/Q171/0/52.asp
Software FT Sets Are Not Supported in Microsoft Cluster Server.
Does SQL Server 2000 clustering provide load balancing?
Does SQL Server 2000 full-text search support clustering?
How do I upgrade SQL Server 6.5 or SQL Server 7.0 to SQL Server 2000 when SQL Server version 6.5 or SQL Server 7.0 is part of a cluster?
For specific procedures, see the following topics:
- How to upgrade from a SQL Server 6.5 active/passive failover cluster (SQL Server Setup)
- How to upgrade from a SQL Server 6.5 active/active failover cluster (SQL Server Setup)
- How to upgrade from a SQL Server 7.0 active/active failover cluster (SQL Server Setup)
- How to upgrade from a SQL Server 7.0 active/passive failover cluster (SQL Server Setup)
- How to upgrade from a default instance to a default clustered instance of SQL Server 2000 (SQL Server Setup)
For more information, see Failover Clustering.
What hardware is required to run SQL Server 2000 in a clustering environment?
Microsoft Web siteNote Search by using the word "cluster" because individual components cannot be combined to create a supported system.
In addition, refer to the Microsoft Cluster Server Administrator's Guide for a list of supported hardware configurations and hardware configuration information.
Can SQL Server 6.5 or SQL Server 7.0 be installed on one node and SQL Server 2000 be installed on the other node of a cluster?
Where do I place the SQL Server 2000 files to provide failover support?
How do I shut down SQL Server from the command line without the Cluster Service interpreting the shutdown as a failure?
cluster [cluster name] RESOURCE [resource name] /option
In the preceding command syntax, the /option switch controls this functionality.
The specific options to be used are /online and /offline. These options are equivalent to the commands net start mssqlserver (to start SQL Server from the command line) and net stop mssqlserver (to shut down SQL Server from the command line) for a nonvirtualized server, respectively. You can perform this procedure on the SQL Server Fulltext, the SQL Server Agent, and the SQL Server resources.
Following are some examples of how to use this command syntax:
- To take the SQL Server 2000 resource offline if the Cluster Name is "SQLCluster" and the resource is named "SQL Server" (where "SQL Server" is the name of the SQL Server 2000 resource:
cluster "SQLCluster" resource "SQL Server" /offline
- To bring the SQL Server 2000 resource back online:
cluster "SQLCluster" resource "SQL Server" /online