both "automatic storage" I presume? Any LOB's involved?
I am not sure but because the CPU's are not compliant I would prefer to unload to DEL/CSV format and make sure to FTP them in ascii mode.
Are there FK constraints involved? What I did in a simular situation was:
split the outputifle of db2look in 2 halves:
- the upper part contains all the create table & indexes
- the lower part contains all the FK constraints
On the new machine:
1st execute the upper part (create the tablespaces & tables & indexes)
2nd load the data (db2move portal load in you case)
3rd check of all the data is present
4th execute the lower part (create all the FK constraints)
In my case this approach worked
