Search found 516 matches

by rkashyap
Thu May 09, 2013 8:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Performance
Replies: 4
Views: 2255

Re: Lookup Performance

What is the issue that you are facing ... What is the volume of incoming records vs lookup table size? How long is the execution time?
by rkashyap
Thu May 02, 2013 11:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage to web services
Replies: 4
Views: 3254

Re: Datastage to web services

I believe that this may be achieved using ISD. Are you getting parms for the data lookup also from webservice?
by rkashyap
Sat Jan 12, 2013 12:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fast Track - Join related questions.
Replies: 3
Views: 2094

Thanks. Appreciate your response. We are not able to find an option to perform joins other than Inner Join in FastTrack. A way around this might be to subsequently edit the job In Designer. Unfortunately after updating the generated job in Designer, ther seems to be no good way to maintain the job i...
by rkashyap
Fri Jan 11, 2013 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fast Track - Join related questions.
Replies: 3
Views: 2094

Fast Track - Join related questions.

We need help with creating Joins in Fast Track. Can you please advise: 1. We are trying to create a Right Outer join using FastTrack, but are not able to find an option for this. Is it possible to create joins other than Inner Join in FastTrack is possible? 2. In case of three table join with matchi...
by rkashyap
Thu Jan 10, 2013 1:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: if then elseif
Replies: 5
Views: 4613

qutesanju wrote:do you mean like this?

Code: Select all


if       lnk_lkp_filter_table_xfmr.C_ACH_DIR = 'IN' then  lnk_lkp_filter_table_xfmr.N_AC2 

else  lnk_lkp_filter_table_xfmr.C_ACH_DIR = 'OUT' then lnk_lkp_filter_table_xfmr.N_AC1 

else setNULL()

Yes.
by rkashyap
Wed Jan 09, 2013 2:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: if then elseif
Replies: 5
Views: 4613

Re: if then elseif

This works ...

if lnk_xfmr.DIR = 'IN' then lnk_xfmr.AC1 else
if lnk_xfmr.DIR = 'OUT' then lnk_xfmr.AC2 else ...

Note: If no default exists for "..." then use setNull().