Skip to content

How Do I Find The Schema Version of my Database

To check the schema version of your CALUMO database perform the following actions:

  • Open SQL Server Management Studio and connect to the Relation Database Server that is hosting the CALUMO database
  • Create a new SQL query against the CALUMO database
  • Insert the following query:
SELECT * FROM SchemaInfo

You will be returned a set of results, the last row will show thecurrent schema version of the database.

Back to top