if soource is having 10 records how will u insert 20
records to target
Answers were Sorted based on User's Feedback
Answer / sreekanth
select * from table_name
union all
select * from table_name;
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / priyank
Take 2 instances of source and join them unsin UNION
transformation(provided the target structure is same as the
source structure).
SQ1 --> UNION --> EXP --> Target
SQ2
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / saravana
we can user Normalizer transformation, to convert a row into double row and then load it into target
| Is This Answer Correct ? | 0 Yes | 0 No |
After a load is done to my target table, I need to insert a last row, which might be formed at some expression transformation and brought to target. Do I have to have separate mapping to be run after the 1st mapping? Or in a single mapping how to achieve this?
What is a repository? And how to add it in an informatica client?
which is better perfomancewise lookup or joiner and why?can anyone give example?
my source contain data like this cno cname sal 100 rama@gmail.com 1000 200 karuna@yahoo.com 2000 i want load my data to the target is cno cname sal 100 rama 1000 200 karuna 2000 plz send the answer
Briefly define a session task?
Is snow flake or star schema used? If star schema means why?
Give one example for each of conditional aggregation, non-aggregate expression, and nested aggregation?
I have a scenario with router transformation. but i dont want to capture records from default group. how can we achieve this.
How can we join the tables if they don't have primary and foreign key relationship and no matching port?
What are the technical challenges faced in Informatica production support member? Give any one example and how to solve it?
How to delete the data in the target table after loaded.
What is Target Update Override? What is the Use ?