Thomas
Run this on the DB at each step of the DB upgrade.
select * from dbo.DatabaseVersion
should return something like
MajorVersion, Minor version, Revision, Version date, Hotfix, CommitID, Build Key
9 4 5 2018-05-31 0 3a5849cb2433ef91ba0cf42271e3e77e6219e7fb
Since you mentioned the correct SQL Query to ' Confirm current DB verions,' for us on-premise customers relying on the ' Self Upgrade Plan from X.X.X to 9.X' [https://resources.workspaceone.com/view/lf72h9pc5n2kdnvsynl7/en] (which hasn't been update for over a year - and includes flaws), beware of the wording in the 9th line on the Excel Validation checklist that is at the beginning under Environment Testing / Database / Confirm current DB verions (yes it is supposed to say ' versions' ) where it says: WRONG: Run the following SQL query: Select * from database version This omits the ' dbo.,' changes capitalization and adds a space ' ' . This stumped me at first, as we are on our own and feel somewhat unsupported as on-premise customers who have to search for answers all the time! I called support last year and got this answer but the checklist needs help! CORRECT (same as Mike S.): select * from dbo.DatabaseVersion This help page is correct too: ' Verify Proper Database Installation' https://docs.vmware.com/en/VMware-Workspace-ONE-UEM/9.5/vmware-airwatch-guides-95/GUID-AW95-Verify_D... : SELECT * FROM dbo.DatabaseVersion
Thanks, Luke! - I just downloaded the 9.0 to 9.2 DB install and also downloaded the 9.3 DB install. After I get the DB to 9.3 - I'll run the 9.5 for both the app and the DB.
