This SQL Query will allow you to retrieve Property information about your SQL server.
SQL Query:
Select
ServerProperty('ServerName') 'Server Name',
ServerProperty('ComputerNamePhysicalNetBIOS') 'Physical Machine',
'Instance Name' = Case
When ServerProperty('InstanceName') Is NULL Then ''
Else '<Unknown>'
End,
ServerProperty('Edition') 'Edition',
ServerProperty('ProductLevel') 'Product Level',
ServerProperty('ProductVersion') 'Product Version',
'Clustered' = Case
When ServerProperty('IsClustered') = 0 Then 'No'
When ServerProperty('IsClustered') = 1 Then 'Yes'
'Integrated Security' = Case
When ServerProperty('IsIntegratedSecurityOnly') = 0 Then 'No'
When ServerProperty('IsIntegratedSecurityOnly') = 1 Then 'Yes'
'Single User Mode' = Case
When ServerProperty('IsSingleUser') = 0 Then 'No'
When ServerProperty('IsSingleUser') = 1 Then 'Yes'
'Number Of Licenses' = Case
When ServerProperty('NumLicenses') Is NULL Then ''
ServerProperty('LicenseType') 'LicenseType'
No Comments