my source having 10 records but how can i load 20 records in
target, i am not bother about duplicates?

Answers were Sorted based on User's Feedback



my source having 10 records but how can i load 20 records in target, i am not bother about duplica..

Answer / rajesh

Take the source into expression and map it to instances of
target.

Is This Answer Correct ?    12 Yes 0 No

my source having 10 records but how can i load 20 records in target, i am not bother about duplica..

Answer / naga

Just run the session twice , Setting Session update
properties as Insert and remove distict option/Unique key
constraints in Target

Is This Answer Correct ?    13 Yes 4 No

my source having 10 records but how can i load 20 records in target, i am not bother about duplica..

Answer / vidyasagar

just use the below query in SQ override:)

select * from table

union all

select * from table

Regards:
Vidyasagar

Is This Answer Correct ?    9 Yes 0 No

my source having 10 records but how can i load 20 records in target, i am not bother about duplica..

Answer / ram

sq---router(2 conditions which should be satisfied)---and passed to target.
will do the work

Is This Answer Correct ?    7 Yes 1 No

my source having 10 records but how can i load 20 records in target, i am not bother about duplica..

Answer / sujana

use union transformation..connect source to multiple grps of union transformation..

Is This Answer Correct ?    5 Yes 0 No

my source having 10 records but how can i load 20 records in target, i am not bother about duplica..

Answer / abhishek

Through normalizer it is possible just give all feild's
occurance as 2 time and link it from source. It will work.

Is This Answer Correct ?    3 Yes 0 No

my source having 10 records but how can i load 20 records in target, i am not bother about duplica..

Answer / jay

Very Simple method

QRC-----> TRGT
|
----> TRGT

Have two instance of target and
connect source to both target instances.

Is This Answer Correct ?    2 Yes 0 No

my source having 10 records but how can i load 20 records in target, i am not bother about duplica..

Answer / subhransu panda

Through session partition we can achieve this.
Create 2 parallel pipeline and don't override the partitions in mapping properties.

Is This Answer Correct ?    0 Yes 0 No

my source having 10 records but how can i load 20 records in target, i am not bother about duplica..

Answer / kamleshmishra291

After SQ use Java transformation

SQ--Java transformation

for(int i=0;i<2;i++)
{
output_port=input_port;
generateRow();
}

Is This Answer Correct ?    0 Yes 0 No

my source having 10 records but how can i load 20 records in target, i am not bother about duplica..

Answer / soujanya

create an instance of target

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Informatica Interview Questions

How IN function works in informatica? Is it similar that of oracle IN function or different? Explain

2 Answers   Mphasis,


What is the difference between informatics 7x and 8x and what is latest version?

0 Answers  


write sql query vertical to horiozontal following table id name 1 100 2 dinesh 3 india 1 101 2 suresh 3 india 1 103 2 prakesh 3 usa i want output like id name country 100 dinesh india 101 suresh india 103 prakesh usa

0 Answers   TCS,


What are the different types of olap? Give an example?

0 Answers  


In which situation we will use persistant cache and shared cache in real time. plzsss answer with example

1 Answers   Wipro,






My source has 100 records. I have targets say in number 5. all target tables has parent and child relationships in between themselves. Now I want to load all 100 records into all targets. How U can ensure that record inserted in parent and then loaded into child.

3 Answers   Cognizant,


How to extract the informatica rejected data?

0 Answers  


In dimension and fact table? which one holds big data?

2 Answers  


My flat file source is C_Id 1-nov-2011 8-nov-2011 100 2000 1500 101 2500 2000 I want my Target as C_Id Week_Num Amt 100 45 2000 100 46 1500 101 45 2500 101 46 2000

3 Answers   Wipro,


i have two coloumn emp_no sal 1 3000 2 3000 3 3000 4 4000 5 5000 6 2700 7 4500 i just need output by removing duplicate.my answer should be emp_no sal 1 3000 2 4000 3 5000 and so on.please tel me the transformation to use and if variable is used in expression then how can i give variable expression

3 Answers  


what is the difference between look up and joiner(don't say joiner sopport only = where as look up support non-equijoin).

3 Answers   IBM, ITC Infotech,


How informatica process data means how informatica works?

2 Answers   TCS,


Categories