How to determine cluster node

  • Given an active-active SQL Server cluster setup, how does one determine the names of the SQL Server cluster nodes?

    I don't want the SQL Server virtual server name returned from "select serverproperty('machinename')", but rather the NetBIOS name of the physical machines hosting the cluster.

    Thanks.

  • This was removed by the editor as SPAM

  • Point to Master in QA and execute this.

    select * from :: fn_virtualservernodes ()

    That gives you the physical names of the cluster nodes.

    -Ken

  • SELECT SERVERPROPERTY('ComputerNamePhysicalNetBIOS')

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply