Merging identical tables with different data

J

Julia

How can I merge two databases in to one with identical structures and
identical table structures, but with different data in the tables?
 
J

Joseph Meehan

Julia said:
How can I merge two databases in to one with identical structures and
identical table structures, but with different data in the tables?

Use an Update query. The wizard will help you.
 
J

Joseph Meehan

Julia said:
How can I merge two databases in to one with identical structures and
identical table structures, but with different data in the tables?

Let me get back to that.

You can use an update query or an append query. An update will not add
a new record where it sees a match of the selected field(s) but will change
data to match the "new" data. An Append query will just add records.

You start by making a standard query and then change the query type to
append or update.

Sorry about the first post.
 
G

Guest

Julia
Write an append query. This will copy the data from one table to the end of the other table, without overwriting the data already there

Rosc

----- Julia wrote: ----

How can I merge two databases in to one with identical structures an
identical table structures, but with different data in the tables
 

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

Top