Find out which SQL version is being used
Use the System Information portlet
- Open the application.
- SelectView > Home Dashboard.
- If theSystem Informationportlet is not currently available on any tabs in the dashboard, selectAdd View.
- In theDescriptionfield, enter System Information and then selectOK.
- Select theSelect Portletslink.
- Mark theSystem Informationcheckbox and selectOK.
- Find theSQL versionrow, and your SQL server information is listed there.tipTheDatabase serverrow indicates which SQL instance is being used.
Use the SQL Server Installation Center
- At the SQL Server, use the Start menu to search for and open the SQL Server Installation Center.
- In the left pane of the SQL Server Installation Center window, selectTools.
- In the right pane, selectInstalled 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.
- Use this Microsoft help article and the number in theVersioncolumn on the report to determine if your instance is the most current version.
Use the Windows Command Prompt
- At the workstation where SQL is installed, selectStart > Run, and entercmdin theOpenfield. SelectOKto open a command prompt window.
- In the command prompt, enterSQLCMD -S servername\instancename. The command prompt will change to1>
- To find the SQL instance name, typeservices.mscin a new command prompt window.
- Find the entries beginning with SQL. The instance name is listed in parenthesis.
- Typeselect @@versionand press Enter.
- At the2>prompt, entergoand then press Enter.
- The SQL version running on this workstation is displayed. If you have multiple instances, you can repeat these steps for each instance.
note
If FileCabinet CS is reporting that you are using SQL Express, but you believe that the instance is using a full version of SQL, you can open the instance in SQL Server Management Studio and enter the following query to determine which edition is being reported by SQL:
sqlcmd -Sservername -q"select SERVERPROPERTY('edition')"
.