How to locate SQL server clustered database & it’s properties
1. How to locate if I am connected to a SQL server cluster?
SELECT SERVERPROPERTY(‘IsClustered’)
2. Find name of the Node on which SQL Server Instance is Currently running
SELECT SERVERPROPERTY(‘ComputerNamePhysicalNetBIOS’) AS [CurrentNodeName]
If the server is not cluster, then the above query returns the Host Name of the Server.
3. Find SQL Server Cluster Nodes
a. SELECT * FROM fn_virtualservernodes()
b. SELECT * FROM sys.dm_os_cluster_nodes
4. Find SQL Server Cluster Shared Drives
a. SELECT * FROM fn_servershareddrives()
b. SELECT * FROM sys.dm_io_cluster_shared_drives
Leave a Reply
You must be logged in to post a comment.