April 15, 2010 at 2:45 pm
How to find out if I am working in clustered or non clustered enviroment. I know it is a stupid question,but if someone would help me to answer it. I would appreciate it.Thank you very much
April 15, 2010 at 3:17 pm
From SQL? try:
select serverproperty('ComputerNamePhysicalNetBIOS'), @@ServerName
(See BOL for this). If they are the same, no cluster.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
April 15, 2010 at 3:29 pm
Also:
select ServerProperty('IsClustered')
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
April 16, 2010 at 5:35 am
Thank you
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply