I'm sure you are aware that version 7.2 is out of support. additionally, I'm not sure if Windows 2003 ever was a supported platform for V7.2 .. So, be prepared for the unexpected!!
To my knowledge, w2k and w2003 are compatible for backup and restore ... Use a sample database to backup and restore between these boxes before you do live ..
http://www-128.ibm.com/developerwork...rected+restore
should give you all the information you need ... (If the directory structure is same on both boxes, then you do not need to redirect)
The other option is to user db2look, export and load.
In brief
1) Use db2look to generate the ddl for the database objects
db2look -d <dbname> -e -a -l -x -o db2look.out -wrapper -server
2) Use the db2look.out to create a database objects in the database on the other machine.
3) On the source machine, generate export and load scripts
select 'export to '||rtrim(tabschema)||'.'||rtrim(tabname)||'.ixf of ixf lobdir . lobfile '||rtrim(tabschema)||'.'||rtrim(tabname)||' modified by lobsinfile select * from '||rtrim(tabschema)||'.'||rtrim(tabname)||' ; ' from syscat.tables where tabschema not like 'SYS%'
select 'load from '||rtrim(tabschema)||'.'||rtrim(tabname)||'.ixf of ixf lobdir . lobfile '||rtrim(tabschema)||'.'||rtrim(tabname)||' modified by lobsinfile replace into '||rtrim(tabschema)||'.'||rtrim(tabname)||' nonrecoverable; ' from syscat.tables where tabschema not like 'SYS%'
4) Use the above export command to export the data and copy all files to the othe box.
5) Use the above load command to load the data into the tables on the target m/c
6) Backup the database on the target ...
HTH
Sathyaram
PS: Would love to meet you in Paris for a drink when I happen to be there
