I have the source like
col1 col2
a l
b p
a m
a n
b q
x y
How to get the target data like below
col1 col2
a l,m,n
b p,q
x y
Answer Posted / venky
src->sorter->exp->agg->tgt
sorter:-
select col1 key as sorter
exp:-
var1=iff(var2=col1,var1||','||col2,col2)
var2=col1
output_port=var1
agg;-
select group by col1
tgt:-
connect to target
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
How to convert multiple rows to single row (multiple columns) in informatica
Partition, what happens if the specified key range is shorter and longer
Explain the scenario which compels informatica server to reject files?
To Provide Support For Mainframes Source Data, which Files Are Used As A Source Definitions?
How can we update a record in the target table without using update strategy?
Please let me know how to make encryption and decryption with example?
Can we create a Integration service without a Repository service and vice versa?
suppose we are using dynamic lookup cache and in lookup condition the record is succeeded but in target it is failed due to some reasons then what happened in the cache ?
Explain pushdown optimization $pushdownconfig parameter - informatica
expain about the tune parameters?
Explain the code page compatibility?
Sequence generator, when you move from develoment to production how will you reset
Describe data concatenation?
SOURCE DATA IS DISPLAY IN THIS FORMATE IN TARGET . WHAT BUSINESS LOGIC WE CAN APPLY. source table target table ------------ ------------ c1 c2 c3 c1 c2 c3 -- -- -- -- -- -- 1 A J 1 2 B K 2 A 3 C L 3 B J 4 D M 4 C K 5 E N 5 E L F M N
Tell me can we override a native sql query within informatica? Where do we do it? How do we do it?