I noticed that sys.dm_os_cluster_nodes table/view does not exist for
SQL 2000. I believe SQL2000 has clustering support.
Yes SQL 2000 has clustering support. Another method to detect clustering is
with SERVERPROPERTY:
SELECT SERVERPROPERTY('IsClustered')
This will return 1 if clustered (otherwise 0) and can be used with SQL 2000
and later versions.
--
Hope this helps.
Dan Guzman
SQL Server MVP
http://weblogs.sqlteam.com/dang/
"Virendra" <vi********@hotmail.comwrote in message
news:93**********************************@x41g2000 hsb.googlegroups.com...
On Jun 7, 10:50 am, "Dan Guzman" <guzma...@nospam-
online.sbcglobal.netwrote:
I am looking for this information for MSSQL, Oracle, DB2 and Sybase
databases.
The result of the following query will be non-empty if the Microsoft SQL
Server instance is clustered.
SELECT * FROM sys.dm_os_cluster_nodes;
--
Hope this helps.
Dan Guzman
SQL Server MVPhttp://weblogs.sqlteam.com/dang/
"Virendra" <virenbe...@hotmail.comwrote in message
news:e5**********************************@t54g2000 hsg.googlegroups.com...
I need to figure out programmatically if an instance is a cluster or
non-cluster. Also, if it is a cluster what are nodes and associated
cluster directories in the instance. All I know is the instance name.
I am looking for this information for MSSQL, Oracle, DB2 and Sybase
databases.
Thanks in advance for any help.- Hide quoted text -
- Show quoted text -
Thanks both of you.
I noticed that sys.dm_os_cluster_nodes table/view does not exist for
SQL 2000. I believe SQL2000 has clustering support.
Thanks again.