Skip to content
English
  • There are no suggestions because the search field is empty.

How to Verify Installed Clubspeed Version on a Server

Overview: This guide explains how to verify the installed Clubspeed version on a customer’s server. Confirming the version helps ensure the system is up to date and matches the expected release level.

Method 1 — Check Version Table in SSMS

Follow these steps to view the version history directly in the database:

  1. Log in to the customer’s server.

  2. Open Microsoft SQL Server Management Studio (SSMS).

  3. Connect to the appropriate SQL instance.

  4. Expand Databases.

  5. Locate and expand the database named ClubspeedV8.

  6. Expand the Tables folder.

  7. Locate the table dbo.Version_CS.

  8. Right-click dbo.Version_CS → select Select Top 1000 Rows.

Reviewing the Version History

The table displays all previously installed Clubspeed versions and the dates they were applied.

  • The most recent entry (bottom row) represents the currently installed Clubspeed version on the server.

Method 2 — Quick Query (Recommended)

For a faster check, run the following query:

SELECT CurrentVersion
FROM dbo.Version_CS;
 

This returns the currently installed Clubspeed version directly.

Notes

  • Database name: ClubspeedV8

  • Version table: dbo.Version_CS

  • Column containing version: CurrentVersion


Summary

To confirm a customer’s Clubspeed version, check the dbo.Version_CS table in the ClubspeedV8 database. The latest record indicates the active version installed.