G
Guest
I started out with two tables imported from a peoplesoft database. The tables
contain four fields that need to be checked for matches. I created a
make-table query that found the matches by putting in statement that read
like: match field 1 and match field 2 and match field 3 and match field 4.
This worked great! Then I needed to get a list of the non-matches. This
proved to be difficult. First I tried to create another make-table query that
did: if table 1.field 1 <> table 2.field 1 OR table 1.field 2 <> table
2.field2 OR table1.field3 <> table2.field3 OR table1.field4 <> table2.field4.
That overloaded my virtual memory. I tied a few other queries that either
gave bad results or the same Temp memory error. What is needed is to look at
a single row of info in table 1 and then look at each row in table 2 and see
if all four fields match. Then some way of indicating if the row matches or
not. It would then need to get the next row from table1 and compare with all
the rows in table 2 again, so that I would end up knowing if every row in
table 2 is a match or not.
contain four fields that need to be checked for matches. I created a
make-table query that found the matches by putting in statement that read
like: match field 1 and match field 2 and match field 3 and match field 4.
This worked great! Then I needed to get a list of the non-matches. This
proved to be difficult. First I tried to create another make-table query that
did: if table 1.field 1 <> table 2.field 1 OR table 1.field 2 <> table
2.field2 OR table1.field3 <> table2.field3 OR table1.field4 <> table2.field4.
That overloaded my virtual memory. I tied a few other queries that either
gave bad results or the same Temp memory error. What is needed is to look at
a single row of info in table 1 and then look at each row in table 2 and see
if all four fields match. Then some way of indicating if the row matches or
not. It would then need to get the next row from table1 and compare with all
the rows in table 2 again, so that I would end up knowing if every row in
table 2 is a match or not.