other way is
1) db2 -x "select 'EXPORT TO SCHNAME.'||TABNAME||'.IXF OF IXF SELECT * FROM SCHNAME.'||TABNAME||';' from syscat.tables where tabschema = 'SCHNAME' and TYPE = 'T' " > export.sql
2) db2 -x "select 'IMPORT FROM SCHNAME.'||TABNAME||'.IXF OF IXF CREATE INTO SCHNAME.'||TABNAME||';' from syscat.tables where tabschema = 'SCHNAME' AND TYPE = 'T' " > import.sql
export.sql > export.txt in the newer version of db
import.sql > import.txt in the older version of db
regds
Paul