Skip to main content
InSource Solutions

TN PT121 How to confirm the Microsoft SQL Server Installed Version

InSource_Logo_Transparent.png

Description

 

How to confirm the Microsoft SQL Sever version & service pack that is installed before installing Wonderware

  • Author: Mike Viteri
  • Published: 9/7/2017
  • Applies to: SQL Server

Details

Open SQL Server Management Studio

sqlversion1.JPG

One way to locate the version is to look to the right of your server name. In this example the version is 11.0.5058. This doesn't easily tell if the service pack is installed.

You can use this website below to locate the version and it will tell you the service pack.

https://support.microsoft.com/en-us/help/321185/how-to-determine-the-version--edition-and-update-level-of-sql-server-a

 

sqlversion2.JPG


Another option is to run this query below. The output will show version and service pack.

SELECT SERVERPROPERTY('productversion') as SQLVersion, 
SERVERPROPERTY ('productlevel') as ServicePack, 
SERVERPROPERTY ('edition') as Edition

image.png