Find the exact version of your MSSQL server

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
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
  1. SARAVANAN-J says:

    all collections are fine…….

    Attractive design

    Best wishes

  2. admin says:

    Thanks :)
    Arun

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>