Currently the data is in Access but I can easily port to SQL.
We initially loaded data (say, fields 1-40 of various data types) but realized it was incomplete so we re-processed and loaded fields 1-75. Fields 3-40 should be identical between the two data sets.
We're trying to validate the re-processed records against the originally loaded ones and match them. Would it work to just bundle the common fields (3-40) into a hash and match on that or is it better to treat each field individually?
Or is there a better way entirely?
Thank you in advance.