SELECT @@VERSION as VERSION
returns 'Microsoft SQL Server 2005 - 9.00.3042.00 (Intel X86) Feb 9 2007 22:47:07 Copyright (c) 1988-2005 Microsoft Corporation Developer Edition on Windows NT 6.0 (Build 6000: ) ' on my machine
SERVERPROPERTY displays information about the server instance
We can use the SERVERPROPERTY with the 'propertyname' to get information about the SQL SERVER instance.
For eg:
To get the product version, use :
SELECT SERVERPROPERTY('productversion') as ProductVersion
returns '9.00.3042.00' on my machine
To get the Service Pack information or the level of version, use :
SELECT SERVERPROPERTY ('productlevel') as Level
returns 'SP2' on my machine
To get the product edition, use :
SELECT SERVERPROPERTY('edition') as EDITION
returns 'Developer Edition' on my machine
Similary you can retrieve the LicenseType, MachineName, Number of client licenses on the current instances, servername and many more property information about the current sql server instance.
Check a list of other properties over here.
8 comments:
Excellent i learned new things
Nice Blog..Usefull..U R Great...
select serverproperty('Edition') as SQLEdition, Serverproperty('ProductLevel') as ServicePack,
ServerProperty('ProductVersion')as Version
thanks for your comments Sudha.
can we find liscenece key as well?
SQL Server 2005 does not track licensing via registry entries. So using the query :
SELECT ServerProperty('LicenseType')
'returns DISABLED
To get a possible resolution to this, check this blog.
http://blogs.msdn.com/sqlblog/archive/2006/11/10/tracking-license-information-in-sql-2005.aspx
it's very usefull blog
Any ideas on how to loop through a list of linked servers to extract this information from many, many servers?
Post a Comment