Hi,
In source I have records like this
No name address
10 manoj mum
10 manoj dilhi
20 kumar usa
20 kumar Tokyo
I want records in target like shown below
No name addr1 addr2
10 manoj mum dilhi
20 kumar usa Tokyo
If it is reverse we can do this by using Normalizer
transformation by setting occurance as 2.
Somebody will say use denoralization technique. But as of my
knowledge I couldn’t find any denormalization technique. Is
there any concept like that?
I tryid this seriously but I could find any idea to
implement this.
Can any one please help me ?
Advance Thanks
Answer Posted / santosh
select no, name, max(decode(ronum,1,address1)) as address1,
max(decode(ronum,2,address1)) as address2 from (select
no,name,address1,row_number() over(partition by no order by
no) as ronum from model16) group by no, name
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is a standalone command task?
How can you differentiate between powercenter and power map?
Explain the scenario which compels informatica server to reject files?
What are the main features of Oracle 8i with context to datawarehouse?
Performance tuning in UNIX for informatica mappings?
Explain in detail about scd type 1 through mapping.
difference between informatica 8.1.1 and 8.6
Briefly define a session task?
What are the different types of repositories created using informatica?
How to extract sap data using informatica? What is abap? What are idocs?
How can we use batches?
update strategy transformation in informatica
What do you mean by DTM and Load manager and what is difference between load manager and load balancer?
What are the tasks that can be performed using sq?
In what scenario we use to improve session performance by pushdown optimization?can any one give example?