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 |
What is sql query override? When did u use sql query override?
Enterprise data warehouse your projects phase by phase explain?
which T/r we can use it mapping parmeter and mapping variable? and which one is reusable for any mapping mapping parmeter or mapping varibale?
How can we store previous session logs?
In Which scenario did u used Incremental loading?
If the source has duplicate records as id and name columns, values: 1 a, 1 b, 1 c, 2 a, 2 b,the target shd be loaded as 1 a+b+c or 1 a||b||c, what transformations shd be used for this?
In mapping f.f as one src and f.f as trg,f.f as src and oracle as trg which is fast? mean which is complete first process
what is normalization? explain 1st NF, 2nd NF, 3rd NF
write a sql query following source? subject mark maths 30 science 20 social 80 requird output maths science social 30 20 80
Source --------- eno , ename, sal 001,ank,1000 002,behe,2000 003,raj,2500 Target ------- header :DDMMYYYY24MMSS timestamp body: 001,ank,1000 002,behe,2000 003,raj,2500 footer: count(eno),sum(sal) how to implement the same in a FF tgt?
SOURCE 1 a 1 b 1 c 2 a 2 b 2 c TARGET 1 A B C 2 A B C In oracle & informatica level how to achieve
What r the type of indexes u generally used in informatica?