06
Sep 2009
Many people are not sure of how to find the exact version of their MSSQL server. Here’s the query to be run on SQL Query Analyzer or SQL Server Management Studio thro’ new query-
Find out the version of SQL Server 6.5 -
SELECT @@VERSION
Find out the version of SQL Server 7.0 -
SELECT @@VERSION
Find out the version of SQL Server 2000 -
SELECTÂ SERVERPROPERTY(‘productversion’), SERVERPROPERTY (‘productlevel’), SERVERPROPERTY (‘edition’)
Find out the version of SQL Server 2005 -
SELECTÂ SERVERPROPERTY(‘productversion’), SERVERPROPERTY (‘productlevel’), SERVERPROPERTY (‘edition’)
Find out the version of SQL Server 2008 -
SELECT SERVERPROPERTY(‘productversion’), SERVERPROPERTY (‘productlevel’), SERVERPROPERTY (‘edition’)
“`*“`arun
…
…
Category: MSSQL 2000, 2005, 2008
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
2 Responses
Leave a Reply

all collections are fine…….
Attractive design
Best wishes
Thanks
Arun