Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
Voyager
Contributor
Contributor

remove duplicate from load files

I have two versions from inventory file which has the same fields name but different record. how could I remove duplicated values between both files. my target is to identify new and deleted records between old and the new version

I have tried load distinct as below but final result came as combined values of both files I think its due to version field 

 

 
LOAD 
Distinct
[@1:13] as book#, 
     [@14:18] as type, 
     [@19:n] as unknown,
    Mid(FileName(),17,4) as version
     
     
 
Labels (2)
2 Solutions

Accepted Solutions
MayilVahanan

Hi 
Try with

'Not exists()" functionality. 

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

Prem0212
Creator
Creator

You can use where not exist condition Data load editor.

i think this will work for you.

View solution in original post

2 Replies
MayilVahanan

Hi 
Try with

'Not exists()" functionality. 

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Prem0212
Creator
Creator

You can use where not exist condition Data load editor.

i think this will work for you.