SOURCE
1 a
1 b
1 c
2 a
2 b
2 c
TARGET
1 A B C
2 A B C
In oracle & informatica level how to achieve
Answer Posted / ankit kansal
Hi,
Using Informatica
SRC-SQ-SRT(key used id)-EXP(
v_name = IIF(ID=v_prev_id,v_prev_name ||' '||UPPER(name),UPPER(name))
v_prev_name = v_name
out_name = v_prev_name
v_prev_id = ID
)-AGG(group by id will give u last row)-TGT
Using Oracle
select value from (
select id ||' '||upper(name) ||' '|| lead(upper(name),1) over (partition by id order by id) ||' '|| lead(upper(name),2) over (partition by id order by id) value from ankit_temp order by 1
)temp where length(value)>0 order by value;
http://deepinopensource.blogspot.com/
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Differences between version 7.x and 8.x.
How to generate sequence numbers?
What do you mean by blocking transformation?
Define mapplet?
Explain the different dimensions.
If I have 10 flat files with same name abc.txt files with different timestamps as source I need to load them in tgt table oracle. in between job execution fails and rows are not loaded into tgt. how can I make them load in that target even if my job fails?
can anyone suggest best free Talend data integration training online
Difference between Data and Index Caches?
How to create the source and target database connections in server manager?
Describe data concatenation?
What is workflow monitor?
What do you mean by channel change?
What are the informatica performance improvement tips
What do you understand by SOA of Informatica?
What is the difference between power center and power mart? What is the procedure for creating independent data marts from informatica 7.1?