Opcenter Execution Electronics IoT - MSS (Valor IoT manufacturing - Shopfloor)
Your installed database is too new.
2023-10-25T17:15:11.000-0400
Manufacturing Systems Solutions
Summary
When installing MSS Quality Management during the database migration of the install wizard you encounter this message.
Details
First – you can verify the version that is present in the existing database by running the query below – and it should produce a result similar to shown in the picture:
select*fromversion
Then, you would want to execute the following commands in SQL Management Studio to update the existing view:
DROPVIEW Version go
CREATEview Version asselect 14 as Major,8as Minor, 0 as Revision ,'vCheck'+' 14.10.0.15371'as Descriptive,'vCheck'as Product,convert(smalldatetime,GetDate(), 21)as [Date] GO
After doing this, you should be able to run the vQM installer on the other server and it should be able to proceed past the database check.