August 19, 2010 at 7:14 am
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
August 19, 2010 at 7:17 am
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
August 19, 2010 at 7:18 am
All available from cluster admin tool under administrative tools
---------------------------------------------------------------------
August 19, 2010 at 7:21 am
David:
Thanks.
Is there any t-SQL script that can work from Query Analyzer?
ZYT
August 19, 2010 at 7:24 am
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
August 19, 2010 at 7:32 am
David:
Thanks
SERVERPROPERTY('ComputerNamePhysicalNetBIOS') offers local node physical name. I am looking for other node names.
ZYT
August 19, 2010 at 7:37 am
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