How to delete duplicate record in Informatica?

Answers were Sorted based on User's Feedback



How to delete duplicate record in Informatica?..

Answer / suresh

if the source is database means we can delete the duplicate
records by enabling the option select distinct in source
qualifier t/r properties or by writing the following query
in source qualifier filter

delete from emp where rowid not in (select min(rowid) from
emp group by empno);

if the source is flat file means by enabling the option
distinct in sorter t/r we can delete the duplicate records

Is This Answer Correct ?    27 Yes 1 No

How to delete duplicate record in Informatica?..

Answer / mayuri

Select ditinct in properties of source qualifier
transformation.

Is This Answer Correct ?    21 Yes 6 No

How to delete duplicate record in Informatica?..

Answer / infa dev

Source and the target will the same table from which the
duplicate needs to be deleted from. Then use a lookup trans
on to this same table and then use an update trans with
DD_DELETE if the row is duplicate else do nothing.

Is This Answer Correct ?    12 Yes 3 No

How to delete duplicate record in Informatica?..

Answer / julius caeser

Hi
There are 2 ways to do this and both of them are efficient.
Method 1: Sorter -Filter.
Send all the data to a sorter and , sort by all feilds that
u want to remove duplicacy from . note that in the
preoperties tab, select Unique .
This will select and send forward only Unique Data .

Method 2; Use an Aggregator
Use AGG Transformation and group by the keys /feilds that u
want to remove duplicacy from.

Is This Answer Correct ?    11 Yes 3 No

How to delete duplicate record in Informatica?..

Answer / aswin

use aggregator and do not apply any aggregation function, it will return only last row in the group..if you dont provide any groupby and aggregate value it will return only last row..so you can aviod dups

Is This Answer Correct ?    0 Yes 1 No

How to delete duplicate record in Informatica?..

Answer / mayuresh

Hi,

how to delete duplicate values from table if source and
target are same

my Question is which logic we need to apply before using
DD_DELETE option in update strategy ?

Do we require to use aggregator to group the values and if
there count > 1 then DD_DELETE

PLZ reply

Is This Answer Correct ?    0 Yes 2 No

How to delete duplicate record in Informatica?..

Answer / sarvesh

create table newtable as select distinct * from original
tablename;
by doing this we can elimate the duplicate rows

Is This Answer Correct ?    6 Yes 10 No

Post New Answer

More Informatica Interview Questions

How to create or import flat file definition in to the warehouse designer?

0 Answers   Informatica,


If I have set the property Treat Source Rows as Insert and for the target properties I have checked the boxes Update as Update, what will happen to incoming rows? What exactly is the use of these check boxes and in which scenarios we use them. Also what is the sequence in which informatica understands these properties.Does it takes whatever is defined in treat source rows as property or it is in any other way. Please explain.

3 Answers   Amdocs,


what is the location of parameter file in informatica?

1 Answers   TCS,


What is difference between a gateway node and worker node?

0 Answers  


What is Test load plan? Let us assume 10 records in source, how many rows will be loaded into target?

3 Answers   Logica CMG,






Differentiate between a database and data warehouse?

0 Answers  


What are the performance considerations when working with aggregator transformation?

0 Answers  


Can any one give me an example for factless fact table ? If your answer is studunt attendence registration,could you plese give me explanation for this ?

3 Answers   Cap Gemini, Puma, Wipro,


what is fact and what types of fact tables is there

4 Answers   Cap Gemini,


How to update a particular record in target with out running whole workflow?

0 Answers  


What is joiner cache?

2 Answers   TCS,


What is decode in informatica?

0 Answers  


Categories