In this blog We can get significant server property which returns all information about the SQL Server instance. Use following script to see all the properties of server instance.
SELECT 'BuildClrVersion' Property, SERVERPROPERTY('BuildClrVersion') [Values returned]
UNION ALL
SELECT 'Collation', SERVERPROPERTY('Collation')
UNION ALL
SELECT 'ComputerNamePhysicalNetBIOS', SERVERPROPERTY('ComputerNamePhysicalNetBIOS')
UNION ALL
SELECT 'Edition', SERVERPROPERTY('Edition')
UNION ALL
SELECT 'EngineEdition', SERVERPROPERTY('EngineEdition')


Join the conversation! Your thoughts help the community grow.