Search found 8 matches

by 41ranjeet
Fri Nov 07, 2014 6:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help me on this Scenario
Replies: 4
Views: 4253

Sorry for the late reply Craig,Yes I did try with vertical result but I am not getting the expected result,from vertical pivot I am getting value like below. Col1 Col2_val1 Col2_val2 Col2_val3......... A 10 110 120 .......... B 20 210 220 ......... also Pivot index has a restriction of Array size 10...
by 41ranjeet
Mon Nov 03, 2014 4:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help me on this Scenario
Replies: 4
Views: 4253

Help me on this Scenario

I have below src as my input
COL1 COL2
A 10
B 20
C 30
D 40
A 110
B 210
C 310
D 410
A 120
B 220
C 320
D 420

I want result like below in tgt

A B C D
10 20 30 40
110 210 310 410
120 220 320 420

Its an example of src data,in actual src for COL1 A,B,C and D are repeated for more then 100 times.
by 41ranjeet
Thu Jul 31, 2014 9:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to achieve the Scenario???
Replies: 7
Views: 4744

Thanks Chulett and Yugee for your quick help.Resolved.
by 41ranjeet
Wed Jul 30, 2014 1:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to achieve the Scenario???
Replies: 7
Views: 4744

Thanks Chulett for those links provided.I see in those links mainly discussed how to create dynamic flat file .In my requirement there will be only two target flat files How to distribute records among the target files as I asked above?
by 41ranjeet
Wed Jul 30, 2014 12:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to achieve the Scenario???
Replies: 7
Views: 4744

Target is flat file.
by 41ranjeet
Wed Jul 30, 2014 11:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to achieve the Scenario???
Replies: 7
Views: 4744

How to achieve the Scenario???

Hi All, Can any one help me achieving below scenario. Input: No Name 1 ABC 2 ABC 3 ABC 4 ABC 5 ABC 6 ABC 7 ABC 8 ABC 9 ABC 10 ABC 11 ABC 12 ABC 13 ABC 14 ABC 15 ABC 16 ABC 17 ABC 18 ABC 19 ABC 20 ABC 21 ABC 22 ABC 23 ABC 24 ABC Target:1 No Name 1 ABC 2 ABC 3 ABC 4 ABC 5 ABC 6 ABC 7 ABC 8 ABC 9 ABC 1...
by 41ranjeet
Mon Feb 11, 2013 1:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why to use Copy Stage for single input and output.
Replies: 7
Views: 5247

ray.wurlod wrote:Welcome aboard. The optimized job score will remove a Copy stage that does a simple transfer, so the two jobs will have identical performance. You can prevent this removal via the Force option in th ...
Thanks Ray for warm welcome.
by 41ranjeet
Wed Feb 06, 2013 1:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why to use Copy Stage for single input and output.
Replies: 7
Views: 5247

Why to use Copy Stage for single input and output.

Why to use copy stage if there is only single input and output? Case1 :If we are using copy stage from seq file(src) to seq file(tgt) and doing nothing simply sending src records to tgt . Case2 :If we are directly sending src records to tgt without using copy stage. Which case has the better perform...