Kelly - I ran into EXACTLY your error yesterday installing PUs for 6.10 Premium. In my case Change Tracking was not only turned on in 3 MAS_xxx databases but also for specific tables within them (select * from sys.change_tracking_tables) and that was harder to remove thru SQL Mgmt Studio UI. So I googled it and schlepped this T-SQL together to remove Change Tracking at both the table and db level.
I didn't have time to pretty it up so it would run for all MAS_xxx db's in one shot. Also it's not set to run conditionally, meaning it will complain if Change Tracking is already off but just ignore that error and manually change the 2 MAS_XXX references below to the next company code. After doing this I could click Convert in Company Maintenance without error.
-- Change database name here and below. Run for every MAS_ database.USE MAS_XXXGODECLARE @SQL NVARCHAR(MAX)='';SELECT @SQL = @SQL + 'ALTER TABLE ' + s.name + '.' + t.name + ' DISABLE CHANGE_TRACKING 'FROM sys.change_tracking_tables ctJOIN sys.tables tON ct.object_id= t.object_idJOIN sys.schemas sON t.schema_id= s.schema_id;PRINT @SQL;EXEC sp_executesql @SQL;-- Change database name hereALTER DATABASE MAS_XXX SET CHANGE_TRACKING = OFF------------------------------
Alnoor Cassim
Email:
alnoor@asifocus.comPh: 949-689-9887
Orange County, CA
------------------------------
Original Message:
Sent: 01-21-2021 11:07
From: Kelley Johnson
Subject: Error Updating Sage100C Premium 6.00.1.0 to 6.00.10.0
Thank you. I will give that a try.
------------------------------
Kelley Johnson
Kelley Johnson Consulting
------------------------------
Original Message:
Sent: 01-21-2021 10:21
From: Kate Krueger
Subject: Error Updating Sage100C Premium 6.00.1.0 to 6.00.10.0
I had almost this same message for a premium to premium migration. It ended up that change-tracking was turned on for that table in the SQL database, once we turned that off the error went away. Not sure if this will help you but it is at least something to check!
------------------------------
Kate Krueger
Business Applications Manager
Eide Bailly, Inc.
Denver CO
970-692-5113