append query greatly increases number of records

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

Guest

When I make an an append query with same type names number of fields the
number of records increases more than 10 fold. Any ideas?

Thanks
 
George said:
When I make an an append query with same type names number of fields the
number of records increases more than 10 fold. Any ideas?

Thanks

Change it to a select query and see how many records it selects.
 
George said:
I get the same greatly increased number. What does that tell me?
Are there duplicates? I've had this happen when I didn't
join the tables correctly getting 4 or five duplicate rows
where I should have been getting one.

gls858
 
George said:
I get the same greatly increased number. What does that tell me?

It tells you that the query is not doing what you thought it would (or want
it to do). There are a number of things that can cause that to happen. The
most likely, is that there is a problem with the way the query is built. If
you post the query, perhaps someone here can spot the problem.
 
When I make an an append query with same type names number of fields the
number of records increases more than 10 fold. Any ideas?

Thanks

Please open the Query and use the View menu option to view it in SQL
view. Post the SQL text here.

I'm guessing that you're creating a Cartesian join by including both
the source table and the target table in the query, with no join
line... it's an easy mistake to make! You don't need the target table
(the table into which you're inserting data) in the query grid.

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