Report of all the potential duplicates for merge?

Hello all,

Unfortunately, we let our de-duplication process go for a while and now have a large list to tackle. For planning reasons I'd like to know how many potential duplicates there are. I can see the list on the Merge Potential Duplicates screen but I'm wondering if I can export that list somehow or if there exists a report that will give me the info. 

Thanks in advance,

Ellen

Parents Reply
  • I would also add a WHERE clause of WHERE status = 'P' or the results will include records you've already decided upon (keep or discard).

    Technically, you should halve the result number because the table contains a row for both the original as well as the potential duplicate accounts.

    You then select to either keep 'K' or discard 'D' and those get updated in the status and keep_cust columns.

    customer_no  status  keep_cust

    1234               K         NULL

    4321               D         1234

Children