Originally posted by: Kepa_Screen
My personal experience with migrations from one version to another, is that the better way to do it is with a "clean" method.
You should batch export from original version, analyze, and then re-import to another version, all sources ( mms, mtt, msd, mdq ... ) With msd is better to save old versions in their original format, we use Subversion with several paths in order to have all our diferent versioned files ( mercator6.7.1, datastageTx 7.5 .., now WSTX 8.1.0.3 ) well sorted and mantained.
You can also do it in a "dirty" way as said by thorstenhirsch but we had problems in the past with some trees and functions after the migration ( seriestotext function, xml restrictions on types, and now we have another bad experience with some complex Oracle AQ typetrees ).
So I recomend you to do it in a "clean" way. It's very simple, you can make a script that does it easy.
Create a .bat file containing something like
del type_export.log
for %%K in (*.mtt)
do
"C:\Program Files\IBM\Websphere transformation extender 8.0"\texport %%K >> type_export.log
del type_analyze.log
for %%K in (*.mtt)
do
"C:\Program Files\IBM\Websphere transformation extender 8.0"\tanalyze %%K >> type_analyze.log
del type_import.log
for %%K in (*.mts)
do
"C:\Program Files\IBM\Websphere transformation extender 8.1"\timport %%K >> type_import.log
Also with maps, using mms and mexport, mimport, ( or dstxmapconv ) then mcompile....
#DataExchange#IBMSterlingTransformationExtender#IBM-Websphere-Transformation-Extender