Find your SQL Server version and edition for Digita Suite
Using the About menu
- Open Accounts Production, Practice Management, or Company Secretarial.
- Select Help, then About.
- On the General tab, the first number corresponds to the SQL version being used.
Build number | SQL version |
|---|---|
11.xx | SQL 2012 |
12.xx | SQL 2014 |
13.xx | SQL 2016 |
14.xx | SQL 2017 |
15.xx | SQL 2019 |
important
After 12 July 2022, Microsoft will no longer support SQL Server 2012 or earlier.
Using the SQL Server Installation Center
Use the following steps to view all installed instances of SQL and related information.
- At the SQL Server, use the Start menu to search for and launch the SQL Server Installation Center.
- In the left pane of the SQL Server Installation Center window, choose Tools.
- In the right pane, choose Installed SQL Server features discovery report.
- The report opens in your default web browser. You can use this report to determine your SQL Server instance name, version, edition, and more information.
- Use this Microsoft help article and the number in the Version column on the report to determine if your instance is the most current version.
Using the Windows Command Prompt
Use the following steps from the command prompt to determine what version of SQL you're running.
- On the workstation where SQL is installed, select Start, then Run.
- Entercmdin the Open field, and then press Enter on your keyboard to launch a command prompt window.
- EnterSQLCMD -S servername\instancename(where servername is the name of your server, and instancename is the name of the SQL instance).
- If you're unsure of the name of your SQL instance, open a new command prompt window and typeservices.mscand then press Enter.
- Scroll to the entries beginning with SQL Server (<instancename>)
- The cmd prompt will change to 1>. Typeselect @@versionand then press Enter.
- The cmd prompt will change to 2>. Typegoand then press Enter.
The SQL version that is running on your workstation/server is displayed. If you have multiple instances, you can repeat the process for each instances.