Well, I first tried using a LEFT JOIN with "WHERE ... IS NULL" routine, but Jet doesn't seem to like that sort of setup - it would give errors, or just return no results ... 'course it could have been b/c of the joins/where parts I was using.
Then I thought, hey, I'll just use a UNION query to remove the dups. After all, it works really well whenever you have "true" dups.
The problem I have, however, is that THESE dups aren't 100% dups. Let me explain.
I'm taking data on a recurring basis from 2 different sources. One sources has pieces of info that the other source does not have, and vice versa. But they can be for the same people in both lists - at least a small number of them - a couple hundred out of a few thousand records.
Well, here's one thought I just came up with... maybe someone can say, no that won't work, or give suggestions? Any thoughts/examples/references/suggestions appreciated..
My new idea... will see if will work:
First create a table that ONLY includes the fields that BOTH original sources have - name, address, that sort of thing - unfortunately no unique ID is on the informatino at this records at this point.
Next, I'll create a UNION query of THAT table...
Then somehow join the UNION query to the table that has all the data, and then filter the full data table?
But I'm not sure about the last part... I'm afraid I could end up recreating the "duplicates"..
Any thoughts from anyone on this one? I appologize if it sounds spotty. I think my brain is a little spotty this morning.. I need an I.V. of coffee.
--
"If to err is human, then I must be some kind of human!" -Me
Then I thought, hey, I'll just use a UNION query to remove the dups. After all, it works really well whenever you have "true" dups.
The problem I have, however, is that THESE dups aren't 100% dups. Let me explain.
I'm taking data on a recurring basis from 2 different sources. One sources has pieces of info that the other source does not have, and vice versa. But they can be for the same people in both lists - at least a small number of them - a couple hundred out of a few thousand records.
Well, here's one thought I just came up with... maybe someone can say, no that won't work, or give suggestions? Any thoughts/examples/references/suggestions appreciated..
My new idea... will see if will work:
First create a table that ONLY includes the fields that BOTH original sources have - name, address, that sort of thing - unfortunately no unique ID is on the informatino at this records at this point.
Next, I'll create a UNION query of THAT table...
Then somehow join the UNION query to the table that has all the data, and then filter the full data table?
But I'm not sure about the last part... I'm afraid I could end up recreating the "duplicates"..
Any thoughts from anyone on this one? I appologize if it sounds spotty. I think my brain is a little spotty this morning.. I need an I.V. of coffee.
--
"If to err is human, then I must be some kind of human!" -Me