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
What is a joiner transformation?
Why update strategy and union transformations are active? Explain with examples.
Can any one give me a real time example for FACT TABLE & DIMENSIONAL TABLE?
What is pmcmd command?
Difference between Target-based loading and constraint-based loading?
Make a note of the quantity vaults made in informatica?
How to convert multiple rows to single row (multiple columns) in informatica
What is a filter transformation?
What are the different types of transformation available in informatica.
Which version configuration tool used in ur project?
In informatics server which files are created during the session rums?
What are the types of schemas we have in data warehouse and what are the difference between them?
How to create the list file having millions of flat files while indirect loading in informatica? In indirect file loading, suppose we have less no.of flat files then we can enter files names manually in list file creation. If millions of files are there, how can we enter the flat file names in list file?
Explain the shared cache and re-cache?
Explain incremental aggregation in informatica