I have a scenario like - how can i load 1st record to
Trgt1,2nd->Trgt2, 3rd->Trgt3 and again the cycle has to
repeat with loading 4th->Trgt1,5th->Trgt2,6th->Trgt3?
Answer Posted / avatar dss42b88
for this we use sequence generator t/r,
ex take source emp
targets -emp1,emp2,emp3.
mapping structure
sq->(seq)->exp->rtr->emp1(condition rowid=1)
->emp2(condition rowid=2)
->emp3(condition rowid=3)
in exp t/r add new port and rename it as rowid and connect
to rtr.
note connect next val to rowid(in exp t/r).
in seq t/r change properties like
start value=1
increment by=1
last value=3
currval=1
cycle check it save it.
execute mapping.
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
where to store informatica rejected data?
In how many ways we can create ports?
what is the difference between informatica6.1 and infomatica7.1
What are pre and post-session shell commands?
State the limitations where we cannot use joiner in the mapping pipeline?
How many number of sessions can one group in batches?
How can repository reports be accessed without sql or other transformations?
Explain in detail scd type 2 through mapping.
What is meant by incremental aggregation?
Write the prerequisite tasks to achieve the session partition?
In what scenario we use to improve session performance by pushdown optimization?can any one give example?
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
Workflow is long running due to long running sql query so when we refer the query plan it tells the issue is due to partition of the db table. How to handle this?
Target increases every day even though no new record was inserted
Calculate sum of salaries department wise. Then the sum will be repeat for all columns in each department. Develop a mapping for this.