This query can be used to identify the SQL Server Version and Edition currently in use on a server.
SQL 2005
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
SQL 2000
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
SQL 7.0 and earlier
SELECT @@VERSION
The following is a KB article for this.
KB 321185: How to identify your SQL Server version and edition
Thursday, September 04, 2008
Identification of SQL Server Edition and Version
Detecting the installed version of .NET
Open a command prompt and run the command
dir %systemroot%\microsoft.net\framework\v?.* /ad /b
This will list all the versions of .NET framework installed on the system
Subscribe to:
Posts (Atom)