Error from Append Query

G

Guest

I am attempting to append some data fields to an existing table from a table
created from an imported Excel sheet. Basically a customer information table
and I need to append three additional fields, two tax id's and an additional
reference field. The new table and the customer table share a common key
"CustomerID". When I attempt to run the append query I recieve an error
stating none of the records are appended due to "key violations". Any
suggestions to solve this problem will be greatly appreciated. Thanks!!!
 
T

tw

if you're adding data to newly added fields than you need to use an update
query not an append query.

if you're adding more records to the existing table and the existing table
has records with key values that are the same as in the spreadsheet than you
have violated primary key rules which need that field to have unique values.
 

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