Login or Sign Up to become a member!
LessThanDot Sit Logo

LessThanDot

Community Wiki

Less Than Dot is a community of passionate IT professionals and enthusiasts dedicated to sharing technical knowledge, experience, and assistance. Inside you will find reference materials, interesting technical discussions, and expert tips and commentary. Once you register for an account you will have immediate access to the forums and all past articles and commentaries.

LTD Social Sitings

Lessthandot twitter Lessthandot Linkedin Lessthandot friendfeed Lessthandot facebook Lessthandot rss

Note: Watch for social icons on posts by your favorite authors to follow their postings on these and other social sites.

Navigation

Google Ads

Find Out What The Active Node Of A SQL Active-Passive Failover Cluster Is

From Wiki

Jump to: navigation, search

So you would like to find out which node of your active-passive cluster is active, how can you do that? You can use the SERVERPROPERTY function, you would use it with 'ComputerNamePhysicalNetBIOS' as property name.
This will return the NetBIOS name of the local computer on which the instance of SQL Server is currently running. For a clustered instance of SQL Server on a failover cluster, this value changes as the instance of SQL Server fails over to other nodes in the failover cluster. On a stand-alone instance of SQL Server, this value remains constant and returns the same value as the MachineName property.


If the instance of SQL Server is in a failover cluster and you want to obtain the name of the failover clustered instance, use the MachineName property.

Here is what the code looks like:

  1. SELECT SERVERPROPERTY('ComputerNamePhysicalNetBIOS')


Contributed by: --SQLDenis 17:57, 22 April 2009 (GMT)

Part of SQL Server Admin Hacks

642 Rating: 3.2/5 (6 votes cast)