Compilation error (transformer stage)

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
subrat
Premium Member
Premium Member
Posts: 77
Joined: Tue Dec 11, 2007 5:54 am
Location: UK

Compilation error (transformer stage)

Post by subrat »

Hi,

While compiling a job, i am getting below error on transformer stage:-
----------------------------------------
Compiling: Source = 'RT_BP843/JOB.1339953180.DT.1482146347.TRANS2', Object = 'RT_BP843.O/JOB.1339953180.DT.1482146347.TRANS2'
********************************************************************************************************************************?***
0137 Pin%%V0S47P28.Column%%1 = #<>~
^
"GE" unexpected, Was expecting: Assignment Operator

1 Errors detected, No Object Code Produced.
(UKWHDERIBALnbDIRTransformJob.DIR00002_Split_Tfm)
----------------------------------------

I am wondering whats the problem here.. Till sometimes back it was working fine. Any idea?

Thanks
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

Do you have a derivation in that transformer using "GE" for "greater than or equal to"? If so, replace it with ">=" and see if it will compile.
-craig

"You can never have too many knives" -- Logan Nine Fingers
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Actually the GE stems from #< which DataStage BASIC interprets as "not less than". So it's necessary to ask where "#<>~" comes from in your job design, and why it's unquoted if it's a string.

If it's any help, it's the derivation of the first column on an output link from the second Transformer stage in your job design.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

Ah... I see that now.
-craig

"You can never have too many knives" -- Logan Nine Fingers
Post Reply