Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to find duplicate records

Hi,

How to find duplicate record in to tables.

FirstTable:

Pno,Acode,Tno,Issueancedate

SecondTable:

Pno,Acode,Tno,Issueancedate,Custname,Email,Phoneno,Sector

with check where issuence date comes 7 times means ticket issue six times.

Thanks

5 Replies
Not applicable
Author

Hello,

Its urgent please any one.

Thanks

sreenivas
Creator III
Creator III

You want to eliminate the duplicate records?

Add qvw if possible

Not applicable
Author

hi,

we can find duplicate by using previos function with order by clause.

SunilChauhan
Champion II
Champion II

count( all fieldname)- count(distinct fieldName)

will show you no of duplicate recards

and if u add field in dimension then you will find what are the duplicate records

hope this helps

Sunil Chauhan
farolito20
Contributor III
Contributor III

yourTable:

load * from FirstTable

concatenate

load Pno,Acode,Tno,Issueancedate from SecondTable;

load Distinct Pno,Acode,Tno,Issueancedate

          From yourTable;