suppose my source is
101 a
1o1 b
101 c
101 d
i want target like that 101 abcd how will u achive this
please give me the answer
Answer / bhageerath
src->sq->exp->aggr->tgt
src(col1[int],col2[varchar])
sq(col1[int],col2[varchar])
exp(col1,,col2,v_col1,v_col2,o_col2) {v=variable port, o=output port}
imp:
{ v_col1=col1; v_col2=iif(col1!=v_col1, col2, v_col2||" "||col2); o_col2= v_col2}
aggr(col1,o_col2)
tgt(col1,col2)
| Is This Answer Correct ? | 0 Yes | 0 No |
Hi, I have one scenario.. i want to insert 4 times (Duplicate) a row in the target. Please help me . source row: abcabc Tgt table: abcabc abcabc abcabc abcabc
How do you recover rows from a failed session
What is the difference between STOP and ABORT options in Workflow Monitor?
What are mapplets?
is there any way to read the ms excel datas directly into informatica?like is there any possibilities to take excel file as target?
What are the Differences between connected and unconnected lookup?
What are the basic needs to join two sources in a source qualifier?
Explain the tuning lookup transformation - informatica
server hot-ws270 is connect to Repository B. What does it mean?
How to load duplicate records in to a target table which has a primary key?
Can we write to_date(three arguments) ? Will it work ? Advance thanks
i having mapping emp---> sq_emp--->target using this mapping i have to load dept table values into target... (condition assume there is no primary and foreign key relation between emp(table x) and dept (table Y))