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 |
What are the different versions of informatica?
can anyone suggest best free Talend data integration training online
suppose a session is failed after a transformation , from where that session will run again , i.e . from beginning or from that transformation ?
If you have 10 mappings designed and you need to implement some chages (may be in existing mapping or new mapping need to be designed) then how much time it takes from easier to complex?
how to run the batch using pmcmd command
What is CDC? How to implement CDC?
What is difference between maplet and reusable transformation?
When we enable pushdown optimization technique, two options will be enabled (use view,..). Can anyone tell me how these two options will work ? When do we need to go for pushdown optimization technique ?
What is power play plug in?
i have source like X1 10 X2 20 X1 30 X2 40 i want target as X1 X2 10 20 30 40 in informatica
Difference Between ETL & ELT?
i having source, router transformation, two targets in my mapping... i given two conditions in router 1)sal >500 2)sal < 5000 --------------- my source is havig two sal records (1)1000 (2)2000 then which target will load first? will both targets are get load or single target only get load...... why?