i have a source table and 3 target table.
when session runs first time-1st tgt
second time-2nd tgt
third time-3rd tgt
fourth time-again 1st target. so no

Answers were Sorted based on User's Feedback



i have a source table and 3 target table. when session runs first time-1st tgt ..

Answer / kuni_ankita

Take one variable $$var
in exp trans take one variable port and assign set variable($$var,$$var+1)
then take one router transformation with three group
mod($$var,3)=1 to one tgt
mod($$var,3)=2 to next tgt
mod($$var,3)=0 to another tgt
SD-SQ-EXP-ROUTER-TD1 TD2 TD3

Is This Answer Correct ?    6 Yes 0 No

i have a source table and 3 target table. when session runs first time-1st tgt ..

Answer / sg

SQ-Exp-Rou-Tg1 TG2 Tg3

Exp transformation: for generating sequence number ( u can use sequence generator setting max value to 3)

o_count = iff(o_count=0 or o_count=4,1,o_count+1)

Router group condition,
O_cout=1, TG1
O_cout=2, TG2
O_cout=3, TG3

Is This Answer Correct ?    0 Yes 0 No

i have a source table and 3 target table. when session runs first time-1st tgt ..

Answer / kamleshmishra291

Take a mapping variable of count type $$INCR=1
After SQ take expression and add a variable port
v_INCR_VARIABLE= IIF($$INCR=3,SETVARIABLE($$INCR,0)+1)
Take router and add three groups
Group1-> $$INCR=1
Group2-> $$INCR=2
Group3-> $$INCR=3
Add groups to respective targets.

Is This Answer Correct ?    0 Yes 0 No

i have a source table and 3 target table. when session runs first time-1st tgt ..

Answer / ganesh kamble

We can clearly understand that we need a Router transformation to route or filter source data to the three target tables. Now the question is what will be the filter conditions.

First of all we need an Expression Transformation where we have all the source table columns and along with that we have another i/o port say seq_num, which gets sequence numbers for each source row from the port NEXTVAL of a Sequence Generator start value 0 and increment by 1.

Now the filter condition for the three router groups will be:
MOD(SEQ_NUM,3)=1 connected to 1st target table MOD(SEQ_NUM,3)=2 connected to 2nd target table MOD(SEQ_NUM,3)=0 connected to 3rd target table

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Informatica Interview Questions

Define Update Override?

1 Answers  


How to view and Generate Metadata Reports?

1 Answers  


What is union transformation?

0 Answers  


from Source 100 rows are coming, on target there are 5 m rows which options is better to match data 1. Joiner 2 No cache 3. Static 4. Dynamic

21 Answers   Deloitte,


In ur current projectu have done any performance tuning of mappings?

1 Answers  






how did u understand business requirement?

2 Answers   TCS,


Hi, I am working on informatia in a support role. We used stored procedures in informatica and other than that I never got a chance to work on PL/SQL,little on Unix scripts. But I heard people asking about PL/SQL alot. Can any one let me know how do we use PL/SQL with informatica and if required what is the knowledge that we need to have on PL/SQL? Please let me know in detail which would really help me alot in my career prospectus.

1 Answers   Accenture,


following scenario i have 1000 record flatfile source i want ist row to ist target 2nd eow to 2nd target 3rd row to 3rd target how will u do?

7 Answers   Polaris,


What is rank transformation in informatica

0 Answers   Informatica,


Can we insert ,update ,delete in target tables with one update strategy tran.?

2 Answers   Zensar,


How can we trouble shoot the commas in a column of a comma delimited flat file in Informatica

1 Answers  


Informatica settings are available in which file?

0 Answers   Informatica,


Categories