database merge

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have several databases that I would like to merge into one for a
mailing......any suggestions on how to do this?
 
sweet1rao said:
I have several databases that I would like to merge into one for a
mailing......any suggestions on how to do this?

You could import the tables.

I suggest you use WinZip. Send the all the database in one small
package.
 
If you are referring to two tables, then data can be merged with a Union
query. See the help file for more information.
 
I have several databases that I would like to merge into one for a
mailing......any suggestions on how to do this?

Well... this can be very easy, or extremely difficult, depending on
the nature of the databases. One table in each .mdb file? or 83 in one
and 92 in the other? Autonumbers? Multiple linked tables?

If you have two tables of names and addresses, a simple Append query
will work; or you can even use a UNION query (see the online help) to
temporarily combine the data in the two tables without affecting
what's stored.

Please post a bit more detail. This is certainly doable, but the
details matter!

John W. Vinson[MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top