There is no native Microsoft SQL load balancing tool for clusters.
Microsoft SQL clustering is an availability solution only and has no
scale-out benefit.

Signature
Geoff N. Hiten
Senior Database Administrator
Microsoft SQL Server MVP
While this is true, you could implement a scenario using n instances on n
nodes with distributed partitioned views. That means you horizontally split
up a database table and distribute the parts on different instances which
you switch to different nodes. You virtually join the table partitions by a
view on every instance. Voilà, you get "load balancing" and failover. This
solution is difficult to implement, though.
Best regards,
Nils Loeber
> There is no native Microsoft SQL load balancing tool for clusters.
> Microsoft SQL clustering is an availability solution only and has no
[quoted text clipped - 5 lines]
>> Thanks in advance,
>> Leila
Leila - 26 Apr 2006 14:56 GMT
Thanks Nils,
But DPVs do not necessarily need clustering environment.
> While this is true, you could implement a scenario using n instances on n
> nodes with distributed partitioned views. That means you horizontally
[quoted text clipped - 15 lines]
>>> Thanks in advance,
>>> Leila