Hi,
I am upgrading GP2013 SP2 to GP2015 R2. I created test server for this. Created same production environment by installing GP2013 SP2 and restored Dynamics and company database. I installed GP2015 R2 and latest service pack of GP2015, MicrosoftDynamicsGP14-KB4341224-ENU I could upgraded dynamics database without any issue but when started company database, I got below error while upgrading table PM Transaction Work file and got stuck. Kindly help to find a solution
Unhandled script exception:
Wrong number of parameters sent to script 'convertPM10000forGP14R2'.
DEXSQL.LOG
/* Date: 10/22/2018 Time: 6:32:55
stmt(33481712):*/
declare @cStatement varchar(255) declare T_cursor CURSOR for select 'drop index PM10000.' + name from sysindexes where name like 'AK%PM10000' or name like 'CL%PM10000' set nocount on OPEN T_cursor FETCH NEXT FROM T_cursor INTO @cStatement WHILE (@@FETCH_STATUS <> -1) begin EXEC (@cStatement) FETCH NEXT FROM T_cursor INTO @cStatement end DEALLOCATE T_cursor
*This post is locked for comments