How to find out other nodes in SQL Server cluster?

  • ALL:

    I have SQL Server 2005 SP3 on Windows 2003 and know this is clustered by SERVERPROPERTY('IsClustered') =1. How to find out other nodes info such as instance name?

    Thanks

    ZYT

  • Cluster Manager will provide you with all that information.

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • All available from cluster admin tool under administrative tools

    ---------------------------------------------------------------------

  • David:

    Thanks.

    Is there any t-SQL script that can work from Query Analyzer?

    ZYT

  • YTZ (8/19/2010)


    Is there any t-SQL script that can work from Query Analyzer?

    This will get you the physical node name;

    SELECT SERVERPROPERTY('ComputerNamePhysicalNetBIOS')

    However, if you don't have access to Cluster Manager then you will be limited in what information you can get about the cluster. Best to get that from the Server Admin team if you don't have explicit permissions yourself.

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • David:

    Thanks

    SERVERPROPERTY('ComputerNamePhysicalNetBIOS') offers local node physical name. I am looking for other node names.

    ZYT

  • Yes, that is correct. That is all that I know how to get from T-SQL aside from what you originally posted.

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

Viewing 7 posts - 1 through 6 (of 6 total)

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