1

How can I determine which versions of SQL Server are installed on a machine? I know for sure on my own machine that I have SQL Server 2000 and SQL Server 2008 R2 but aside from just knowing this as I installed them how else can I find out? I've been tasked with finding out all the installed SQL Server instances on different servers so any help would be much appreciated.

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Srb1313711
  • 2,017
  • 5
  • 24
  • 35

2 Answers2

2

Connect to your Sql server DB server using SSMS and run the below command

Select @@version

Also, take a look at this Support/KB document for detailed way of getting the version/edition of SQL Server installed on your machine.

https://support.microsoft.com/kb/321185

To find the installed instances run SQL server Configuration Manager like

Start -> Microsoft SQL Server -> Configuration Tools -> SQL Server Configuration Manager

Once config manager opened -> click/select the label named Sql Server instances

Other ways to find out the same; look at this posts

How can I determine installed SQL Server instances and their versions?

http://blogs.msdn.com/b/askjay/archive/2011/10/11/how-can-i-get-a-list-of-installed-sql-server-instances.aspx

To identify and enable disabled SQL Server instances in SQL Server 2000, see the below MS KB article.

http://support.microsoft.com/kb/953740

Community
  • 1
  • 1
Rahul
  • 76,197
  • 13
  • 71
  • 125
2
SELECT @@VERSION

from command line

SQLCMD -L

or use

SQl Server Configuration Manager

use the SQL Server Configuration Manager tool that installs with both SQL Server 2005 and 2008. On the start menu, expand the Microsoft SQL Server [YOURVERSION] menu, and then expand the Configuration Tools submenu. Launch the SQL Server Configuration Manager tool

enter image description here

Find your Installed SQL Server Versions and Instances

Identify a SQL Server Express Instance

How to Find Your SQL Server Instances (Server Name)

How to identify and enable disabled SQL Server instances in SQL Server 2000

How can I determine installed SQL Server instances and their versions

Community
  • 1
  • 1
Nagaraj S
  • 13,316
  • 6
  • 32
  • 53
  • This is helpful thank you for image was very useful but when i tried this on a machine With sql 2005 and 2000 and this only showed sql 2005? – Srb1313711 Feb 14 '14 at 11:59