vico
vico

Reputation: 18171

Get all SQL Server services in my machine

I got strange feeling that my local computer runs several versions of SQL Server. How to know all running SQL Servers on my PC?

Upvotes: 0

Views: 335

Answers (1)

TheGameiswar
TheGameiswar

Reputation: 28890

How to know all running SQL servers on my PC?

Best way would be to go through configuration manager ..As per your version you can open configuration manager and see all the versions of sqlserver installed.

Below is a snippet from my local machine

enter image description here

One more way would be to go through discovery manager,if you have installation media on your system.. you can double click the setup file and click on tools as shown below

enter image description here

and finally you can see all versions of sqlserver in a report like below .Distinct instance Id is the number of instances here.Opening sqlserver 2016 discovery report won't show 2017 instances,so always open with highest version

enter image description here

Upvotes: 2

Related Questions