Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • create PLAN_TABLE command. Oracle
  • Disbaling DBA_SCHEDULER_JOBS Oracle
  • move_arch_files.ksh Linux/Unix
  • metalink all dynamic view reference notes. Oracle
  • create a folder in multiple places Linux/Unix
  • Adding a new disk and mount it automatically. on VMWARE LINUX Linux/Unix
  • rm_backup_arch_file.ksh Linux/Unix
  • More info about /proc folder and its relation with processes. Linux/Unix
  • Btee and Bitmap Plans in Oracle 9i and higher Oracle
  • Free conference number from http://www.freeconference.com Oracle
  • to see when crontab is changed. Linux/Unix
  • sid_wise_sql.sql Further explaination Oracle
  • How can I tell if ASO is installed ? Oracle
  • 272332.1 CRS 10g Diagnostic Collection Guide Oracle
  • Caching sequence in Memory Oracle

Checking SQL Server Version

Posted on 25-Jul-202525-Jul-2025 By Admin No Comments on Checking SQL Server Version

To check which SQL Server version and edition you are running, you can use the following methods:

1. Using SQL Query (Most Reliable)

Run the following SQL query in SQL Server Management Studio (SSMS) or any query tool:

SELECT @@VERSION;

This will return a string containing the SQL Server version, edition, and service pack (if any).

2. Using ServerProperty Function (More Detailed)

SELECT  
    SERVERPROPERTY('ProductVersion') AS Version,  -- Major.Minor.Build
    SERVERPROPERTY('ProductLevel') AS ProductLevel,  -- RTM, SP1, SP2, etc.
    SERVERPROPERTY('Edition') AS Edition,  -- Enterprise, Standard, Express, etc.
    SERVERPROPERTY('EngineEdition') AS EngineEdition;  -- 3 = Standard/Enterprise, 5 = Express

3. Using SQL Server Management Studio (SSMS)

  • Open SSMS and connect to the instance.
  • In Object Explorer, right-click the server name and select Properties.
  • Look for the “Product” and “Version” fields in the General tab.

4. Using Command Prompt (For Installed Versions)

You can also check installed SQL Server versions using Command Prompt:

sqlcmd -S <server_name> -E -Q "SELECT @@VERSION"

or

osql -S <server_name> -E -Q "SELECT @@VERSION"

Interpreting the Version

The @@VERSION query will return output like:

Microsoft SQL Server 2019 (RTM) - 15.0.2000.5 (X64)
    Oct  8 2019 19:40:22
    Copyright (C) 2019 Microsoft Corporation
    Enterprise Edition (64-bit) on Windows Server 2019

Here:

  • 15.0.2000.5 → SQL Server 2019
  • Enterprise Edition (64-bit) → SQL Server Edition
  • RTM → No service pack installed

SQL Server Version Numbers

Version NumberSQL Server Version
8.xSQL Server 2000
9.xSQL Server 2005
10.xSQL Server 2008
10.5.xSQL Server 2008 R2
11.xSQL Server 2012
12.xSQL Server 2014
13.xSQL Server 2016
14.xSQL Server 2017
15.xSQL Server 2019
16.xSQL Server 2022

SQL Server

Post navigation

Previous Post: Oracle vs MYSQL Architecture differences (For DBAs)
Next Post: Check SQL Server edition

Related Posts

  • T-SQL Vs PL/SQL Syntax SQL Server
  • SQL Server: How to see historical transactions SQL Server
  • SQL Server: How to see current transactions or requests SQL Server
  • SQL Server Vs Oracle Architecture difference SQL Server
  • Check SQL Server edition SQL Server

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Categories

  • Ansible (0)
  • AWS (2)
  • Azure (1)
  • Django (0)
  • GIT (1)
  • Linux/Unix (149)
  • MYSQL (5)
  • Oracle (393)
  • PHP/MYSQL/Wordpress (10)
  • POSTGRESQL (1)
  • Power-BI (0)
  • Python/PySpark (7)
  • RAC (17)
  • rman-dataguard (26)
  • shell (149)
  • SQL scripts (342)
  • SQL Server (6)
  • Uncategorized (0)
  • Videos (0)

Recent Posts

  • Complete Git Tutorial for Beginners25-Dec-2025
  • Postgres DB user and OS user.25-Dec-2025
  • Trace a SQL session from another session using ORADEBUG30-Sep-2025
  • SQL Server Vs Oracle Architecture difference25-Jul-2025
  • SQL Server: How to see historical transactions25-Jul-2025
  • SQL Server: How to see current transactions or requests25-Jul-2025
  • T-SQL Vs PL/SQL Syntax25-Jul-2025
  • Check SQL Server edition25-Jul-2025
  • Checking SQL Server Version25-Jul-2025
  • Oracle vs MYSQL Architecture differences (For DBAs)24-Jul-2025

Archives

  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • find_cons.sql Oracle
  • Find Plan Hash value fphv.sql Oracle
  • cache buffer chain latch Oracle
  • Space padding in korn shell Linux/Unix
  • login.sql Oracle
  • move_arch_files.ksh Linux/Unix
  • Goldengate Tutorial Oracle
  • Vivek’s egrep commands to trace problem. (on linux x86-64) Linux/Unix

Copyright © 2026 pvmehta.com.

Powered by PressBook News WordPress theme