Cowboy_BeBa
Registered User.
- Local time
- Today, 16:00
- Joined
- Nov 30, 2010
- Messages
- 188
trying to fix up a massive db (over 40k records) that is a real mess (duplicates, blank records, mis-spelled stuff, you name it and im dealing with it)
right now trying to update data ive got from one list (which ive imported as a table) into the main list
there is a primary key in the main list but no matching key in the new list, so im joining them based on two fields, FirstName and LastName. Each table has em and ive managed to find quite a few matches this way (created a new DBID field and have stored the ID's in that). However there are quite a few records that dont match (created a query to identify em), this is because either the name isnt in the DB at all but is on the list (which is a possibility but i only expect a small number of records to fit into this category) or because a lot of names have been mis spelled on the second list (ie Apelbaum spelled as Applebaum or Mr. Sam in one table and simply Sam in another)
Is there any way i can query the DB to join the tables on records with similar names?
(Edit: also no need to point out that First Name and Last Name probably have a few duplicates, ie several people named John Smith, im aware and am filtering those out manually when they come up, its just the best i can do with the data ive been given atm)
right now trying to update data ive got from one list (which ive imported as a table) into the main list
there is a primary key in the main list but no matching key in the new list, so im joining them based on two fields, FirstName and LastName. Each table has em and ive managed to find quite a few matches this way (created a new DBID field and have stored the ID's in that). However there are quite a few records that dont match (created a query to identify em), this is because either the name isnt in the DB at all but is on the list (which is a possibility but i only expect a small number of records to fit into this category) or because a lot of names have been mis spelled on the second list (ie Apelbaum spelled as Applebaum or Mr. Sam in one table and simply Sam in another)
Is there any way i can query the DB to join the tables on records with similar names?
(Edit: also no need to point out that First Name and Last Name probably have a few duplicates, ie several people named John Smith, im aware and am filtering those out manually when they come up, its just the best i can do with the data ive been given atm)
Last edited: