I have source like col1,col2,col3,col4 and the values are like
3,6,1,7
1,5,3,8
2,1,5,6
i want the output like
3,6,7
5,3,8
2,5,6
How we will achieve in this scenario in informatica level.
Please help me..
Thanks in advance..
Answers were Sorted based on User's Feedback
Answer / vidya
source -- sq -- exp1 -- exp2 -- t
exp1- create 4 var ports, and 1 output port as
v1=iif(col1=1, null, c1)
v2=iif(col2=1, null, c2)
v3=iif(col3=1, null, c3)
v4=iif(col4=1, null, c4)
op_port1=v1||v2||v3||v4
exp2- op_port1
create 3 out_put port
c1=substr(op_port1, 1,1)
c2=substr(op_port1, 2,1)
c3=substr(op_port1, 3,1)
Is This Answer Correct ? | 10 Yes | 0 No |
Why should we use star schema in datawarehouse design?
5. Consider the following products data which contain duplicate rows. A B C C B D B Q1. Design a mapping to load all unique products in one table and the duplicate rows in another table. The first table should contain the following output A D The second target should contain the following output B B B C C
As a support project team member, how will you get the questions regarding errors from client or customers (in which format)?
How to display First letter of Names in Caps?
How to implement security measures using repository manager?
Mapplets ( can you use source qyalifier, can you use sequence generator, can you use target)
What r the type of indexes u generally used in informatica?
How we will implement Pushdown Optimization and Types in Informatica with better examples
Converting Rows to columns I have Relational source like his. JAN FEB MAR APR 100 200 300 400 500 600 700 800 900 100 200 300 I need to convert these rows into columns to the targe. MONTH TOTAL JAN 1500 FEB 900 MAR 1200 APR 1500 Please experts help me
i have a wf i want to run this very day 3 time every 3 hours how can you scheduled that?
What are the restrictions of union transformation?
What is the grain level in DWH? If i have year to day. what is the grain level of DWH from year to day.