I have been able to use the append successfully for merging 1 talbe with
another but now I have 4 more dbases that I wish to add and all have given me
the same error message.
I'm using
INSERT INTO details
SELECT *
FROM import1;
Microsoft Office Access Can't append all the records in the append query.
Microsoft Office Access set 0 field(s) to Null due to a type conversion
failure, and it didn't add 23 record(s) due to lock violations, and 0
record(s) due to validation rule violations.
Lock violations suggests that you have a Primary Key or a relationship set,
and that adding the new records would either create a duplicate value in the
primary key field or violate referential integrity. Does either details or
import1 have a Primary Key defined - or a field with a unique Index? Might
there be (say) sequence numbers in the two tables, both starting 1,2,3 (and
therefore causing duplicates)?
John W. Vinson [MVP]