Search found 35 matches

by jhansi
Thu Jun 07, 2012 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: concatenate phone numbers with same customer id
Replies: 4
Views: 1947

concatenate phone numbers with same customer id

if the id is same for several records,then the phone numbers will concatenate. how to do it with transformer or without using transformer source id,name,phone 1,abcd,7687656543 1,abcd,9876342123 2,bmp,6545365342 2,bmp,6575434566 3,xyz,9087878765 target id,name,phone 1,abcd,7687656543,9876342123 2,bm...
by jhansi
Tue Jun 05, 2012 11:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter_17: Error occurred during initializeFromArgs().
Replies: 3
Views: 2442

in surrogate key gen... i generate sid and
in filter where clause i gave the condition like
sid%2=0.
i send all remaining records to rejectlink.
by jhansi
Tue Jun 05, 2012 8:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to send different partions data to different targets?
Replies: 7
Views: 1473

stuartjvnorton wrote:Why not just use a filter?
i can use filter or transformer by giving contraint like
DSLink5.sno =1 Then DSLink5.sno Else 0

.but what if i hav large amount of data?
by jhansi
Tue Jun 05, 2012 8:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter_17: Error occurred during initializeFromArgs().
Replies: 3
Views: 2442

Filter_17: Error occurred during initializeFromArgs().

my data is like this deptno,sal 1,2000 2,3000 3,4000 1,2300 4,5000 5,1100 i want target like target1 deptno,sal 1,2000 3,4000 4,5000 target2 2,3000 1,2300 5,1100 with out using transformerstage.i tried with seq--->surrogate key gen--->filter--->datastet and one reject dataset can anyone plz suggest ...
by jhansi
Mon Jun 04, 2012 10:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to send different partions data to different targets?
Replies: 7
Views: 1473

how to send different partions data to different targets?

i hav data like this
1
1
2
2
2
3
how to send all 1's to one target,all 2's to other target and all 3's to another target.
can i use partition tech?