Do you know which tables had the duplicates? I would guess the customer and vendor master tables. I would run something like these in SQL: SELECT COUNT(*),CUSTNMBR FROM TWO..RM00101 GROUP BY CUSTNMBR HAVING COUNT(*) > 1 SELECT COUNT(*),VENDORID FROM TWO..PM00200 GROUP BY VENDORID HAVING COUNT(*) > 1 I suppose the same thing would apply to employees and inventory items. You should not run into this issue with document numbers. I suppose if you really want to get carried you could write a script to go through every table to look for duplicates but there should not be that many. If you have been running the bulk copy scripts you should know which ones need help.
↧