Page 1 of 1

Upgrading DataStage 4.5 to 7.5.2 Env

Posted: Thu Nov 22, 2007 4:38 am
by ysrini9
Hi

We are planning to upgrade 4.X to Datastage 7.5.2.

Could you please suggest me what are the steps I need to follow ?

is there any major Imact ?

Thanks in Advance.

Thanks and Regards
srini

Posted: Thu Nov 22, 2007 4:44 am
by ray.wurlod
Upgrade to 5.2 first, then from there to 7.5.2. I do not think upgrading from 4.5 directly to 7.5.2 is supported. Involve your support provider to get advice directly from IBM.

Posted: Thu Nov 22, 2007 5:02 am
by WoMaWil
you can also go via any 6.x Version as we did it.

Pay attention on each routine:

In past (before 5.x) you could do:

MyRoutine(Arg1)
Arg1=Arg1+25
Return(Arg1)

Now you have to change it like this:

MyRoutine(Arg1)
Arg2=Arg1
Arg2=Arg2+25
Return(Arg2)