I have a database table in which a number of the records are duplicated. I'd like to remove the duplicates but like to keep 1 record (so similar to the duplicateFilter unique port).
I have no unique identifier in the table so if I match a record (based on a combination of attributes) I'll remove all of them from the table, I need to add 1 of them again afterwards.
Currently I use the following approach:
- duplicateFilter to find the duplicates
- remove the records from the table using fme_db_operation = DELETE (this re
- re-insert the unduplicated record
Any suggestions to improve this methodology?