Hi All,
I have upgraded from GP 2010 SP4 to GP 2015 R2 and during my company upgraation i have got an error saying that "the conversion process encountered an error and the temporary table did not get removed" on the following tables: GL00100.
The error explanation is: The converstion process encountered an error and the temporary table did not get removed.
Recommended Action: Remove the temporary table at the database level.
As mentioned in community blogs, i have done the below tasks:
1) Ran the failed table script to verify what failed:
SELECT b.fileOSName, a.fileNumber, a.PRODID, a.Status, a.errornum, a.errordes, c.CMPANYID, c.INTERID
FROM DYNAMICS.dbo.DU000030 a
JOIN
DYNAMICS.dbo.DU000010 b
ON a.fileNumber = b.fileNumber AND a.PRODID = b.PRODID
JOIN
DYNAMICS.dbo.SY01500 c
ON a.companyID = c.CMPANYID
WHERE (a.Status <> 0 or a.errornum <> 0) and a.Status <>15
2) Then ran:
delete DYNAMICS..DU000030 WHERE Status <> 0 and Status <>15
3) Then ran:
delete dynamics..duLCK
4) Opened the Dex.ini file and set "Synchronize=TRUE" and saved changes
5) Re-ran GP Utilities and the companies upgraded successfully.
But still the same error is persisting.
Any suggestions to resolve would be most appreciated.