E
Ernie
Brief background: I have a very large 3rd party dbms
(30+Gb) from which I need to extract selected data using
an odbc link. Among that data is a table which stores
customer contact phone numbers stored as rows. In this way
you might have one customer with 4 phone numbers and
another with only 2. I can segregate these numbers into
separate tables with no problems.
What I want to do is take these 4 tables and combine them
into one table with 4 phone numbers. A simple join won't
work because there may be records in table 2 that are not
in table 1, and records in table 3 that are not in any
others. An append query won't work because then I will get
multiple rows for the same customer again, which is what I
want to avoid.
An update query seems ideal for this but I don't
understand how to set one up. When I tried, I either got
empty fields or I get the error "Operation must use an
updatable query."
Maybe a lookup table could be used? If so, how?
Any ideas are welcome (the simpler the better).
(30+Gb) from which I need to extract selected data using
an odbc link. Among that data is a table which stores
customer contact phone numbers stored as rows. In this way
you might have one customer with 4 phone numbers and
another with only 2. I can segregate these numbers into
separate tables with no problems.
What I want to do is take these 4 tables and combine them
into one table with 4 phone numbers. A simple join won't
work because there may be records in table 2 that are not
in table 1, and records in table 3 that are not in any
others. An append query won't work because then I will get
multiple rows for the same customer again, which is what I
want to avoid.
An update query seems ideal for this but I don't
understand how to set one up. When I tried, I either got
empty fields or I get the error "Operation must use an
updatable query."
Maybe a lookup table could be used? If so, how?
Any ideas are welcome (the simpler the better).