Sign Up for Training |
insightsoftware Company Site
Community
Downloads
Training
Submit a Request
Become a Jet Insider
Give Feedback

Locating SQL Server Version


The process of determining your version of SQL Server requires the following two components

  1. SQL Server Management Studio
  2. The ability to connect to the database engine of the SQL instance you wish to check the version of

Process

  1. Open SQL Server Management Studio, and connect to the database engine of the instance for which you need to check the version

    mceclip0.png
  2. Perform the following three steps;

    1. Click the New Query button (or, hit CTRL+N on your keyboard).
    2. Type  SELECT @@VERSION
    3. Click the Execute button in the ribbon, or press F5 on your keyboard

      mceclip1.png
  3. The results pane will appear, showing you:

    • Your version of SQL (Microsoft SQL Server 2019)
    • Any service packs presently installed (for example SP1)
    • Major/Minor build version (15.0.2080.9)
    • Bitness (X64)

 

For more details regarding specific build numbers, please see the full SQL Server Versions List.

 
Was this article helpful?
0 out of 0 found this helpful

Comments