Warning: Database version is not supported for an upgrade - %VersionFull%
use das; select * from dbo.validation_schema; select * from dbo.shepherd_configs where name = 'DBSchemaVersion';If the two versions returned do not match your installed version: Continue the process below.
use das; declare @version AS nvarchar(MAX) = (select value from dbo.shepherd_configs where name = 'ParityServerVersion'); update dbo.validation_schema set version = @version; exec dbo.UpdateShepherdConfig 'DBSchemaVersion', @version;
use das; select * from dbo.validation_schema; select * from dbo.shepherd_configs where name = 'DBSchemaVersion';