In certain circumstances such as a deployment you may want to verify that you have the correct Episerver database version for your CMS package. Here are the steps for that.
1) Run the following stored procedure.
CMS DB
DECLARE @ver INT
EXEC @ver = sp_DatabaseVersion
SELECT @ver AS Version
Commerce DB
EXEC [dbo].[GetContentSchemaVersionNumber]
2) Use the following utility to match the database version with the corresponding CMS.Core package version.
https://nuget.episerver.com/compare-database/
Please sign in to leave a comment.