We are upgrading from PeopleTools 8.17 to 8.46 and I need to get certain data out of a 8.17 table and into the 8.46 table. I've created a simple data mover script to export the 8.17 data without problems. When I execute the import version of the script in 8.46 I crash the data mover application.
Here is the script:
SET OUTPUT C:\TEMP\HELLO.DAT;
SET LOG C:\TEMP\HELLO.LOG;
EXPORT PSAUTHITEM WHERE CLASSID = 'PAY';
SET INPUT C:\TEMP\HELLO.DAT;
SET LOG C:\TEMP\HELLO.LOG;
IMPORT PSAUTHITEM;
I believe the problem lies in trying to import a 8.17 .dat file into 8.46, but I'm not sure. If I am correct, what other options do I have to get this data into the 8.46 table?
Thanks!
Fritz
Here is the script:
SET OUTPUT C:\TEMP\HELLO.DAT;
SET LOG C:\TEMP\HELLO.LOG;
EXPORT PSAUTHITEM WHERE CLASSID = 'PAY';
SET INPUT C:\TEMP\HELLO.DAT;
SET LOG C:\TEMP\HELLO.LOG;
IMPORT PSAUTHITEM;
I believe the problem lies in trying to import a 8.17 .dat file into 8.46, but I'm not sure. If I am correct, what other options do I have to get this data into the 8.46 table?
Thanks!
Fritz