Search found 3 matches

by basic
Wed Mar 22, 2006 9:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Horizontal Pivot
Replies: 10
Views: 5052

Re: Horizontal Pivot

Hi all, Here's the requirement that i'm facing: I have an input file with two columns : For example, the first column contains : "a" The second column contains : "1col1|2col2|3col3". Do you know how i can do in the "derivation" of my pivot to have in my output file : &...
by basic
Wed Mar 22, 2006 9:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Horizontal Pivot
Replies: 10
Views: 5052

Another option. User transformer to Split the second column into three. In.Column[1,INDEX(In.Column,'|',1)-1] for the first link In.Column[INDEX(In.Column,'|',2),(INDEX(In.Column,'|',2)-INDEX(In.Column,'|',1)-)] for the second link In.Column[INDEX(In.Column,'|',3),(Len(In.Column)-INDEX(In.Column,'|...
by basic
Wed Mar 22, 2006 7:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Horizontal Pivot
Replies: 10
Views: 5052

Horizontal Pivot

Hi all, Here's the requirement that i'm facing: I have an input file with two columns : For example, the first column contains : "a" The second column contains : "1col1|2col2|3col3". Do you know how i can do in the "derivation" of my pivot to have in my output file : &q...