Servers can be clustered together in groups of 1, 3, 7, 15, 31 (ie. 2^n-1, where n is a whole number).
Using the Scimore Enterprise Manager
or
buttons to add or remove servers to the cluster.
Using SQL
It is possible to add servers to a cluster using the ALTER CLUSTER SQL command. The simplest way to add two servers to make a cluster of three would be something like this:
ALTER CLUSTER (ADD ENDPOINT '10.0.0.2:999', ADD ENDPOINT '10.0.0.3:999')
Similarly, removing servers from such a setup would be:
ALTER CLUSTER (DROP INSTANCE 1, DROP INSTANCE 2)
If the server instances to be dropped had identifiers 1 and 2. This can be checked in the sysinstances system table.
Related