SQL Server – How to find whether server is Clustered or not? March 4, 2013March 4, 2013Varun R This is a simple script to find out whether SQL Server is clustered or not. SELECT SERVERPROPERTY('Isclustered') if the value return is 0 – not clustered 1 – clustered null- input is invalid or error print