Problems with Access 2003 Wizard
September 2, 2008 2:06 PM
Subscribe
Access 2003 UnMatched Query Wizard is not returning expected values.
I am attempting to use Access 2003 to find unmatched records between two tables. The story so far...
Table_A and Table_B both contains account numbers, names, addresses, etc for customers. My task is to compare the two tables and produce a list of customers from Table_B that are not in Table_A. Table_A is about 2mb and Table_B is about 200k.
Initially, I had the data in .xls and used the import wizard to bring the data into a fresh Access database, creating two tables. I tried to use the UnMatched query wizard to produce a list of customers. It returned no matches. However I *know* there are matches. I then tried different formats for the data (.txt & .csv) but received the same results.
To test the problem, I created two tables inside Access and used the UnMatched wizard on them. That process produced expected results; it found the no-matches records.
I then created two small versions of Table_A & Table_B (less than 50 records each), imported them, and ran the UnMatched wizard. That process also produced the expected results; it found the no-match records.
Anyone have any thoughts on this? It seems I'm running into some kind of record limit but I can't find any reference to that sort of problem in Google-Land.
(Office 2003, with SP2 installed)
Thanks!
SandPine
posted by sandpine to computers & internet (8 comments total)
1 user marked this as a favorite
1) Add a flag column to Table B;
2) Set all values of flag to FALSE ("No" in Access);
3) Construct a query that finds all Table B customers that ARE in Table A also;
4) Change the query to update Table B's flag column to TRUE;
5) Now go to Table B and filter for flag=FALSE;
posted by blue_wardrobe at 2:34 PM on September 2, 2008