D
Dennis
I am trying to append records from a table called Bus to a
table called Employee Records. In both of these tables the
field names are the same. In Bus, there is an autonumber
pk and in Employee Records the Employee ID is the pk. Both
tables have Employee Id fields and Bus has duplicates thus
the autonumber.
When I try to append only the field named Unit from Bus to
Employee Records, I get the following message:
MicroSoft cannot append all of the records in the append
query. 0 set to Null, 0 due to lock violations, and 1462
do to validation rule violations. In other append queries
I have made some records do not append as they are
duplicates and those error out. I know that all of these
records are not duplicates.
Below is the SQL for the Append query:
INSERT INTO [EMPLOYEE RECORDS] ( UNIT )
SELECT BUS.UNIT
FROM BUS
WHERE (((BUS.RC2)="RC"));
What might be the problem?
Thanks,
table called Employee Records. In both of these tables the
field names are the same. In Bus, there is an autonumber
pk and in Employee Records the Employee ID is the pk. Both
tables have Employee Id fields and Bus has duplicates thus
the autonumber.
When I try to append only the field named Unit from Bus to
Employee Records, I get the following message:
MicroSoft cannot append all of the records in the append
query. 0 set to Null, 0 due to lock violations, and 1462
do to validation rule violations. In other append queries
I have made some records do not append as they are
duplicates and those error out. I know that all of these
records are not duplicates.
Below is the SQL for the Append query:
INSERT INTO [EMPLOYEE RECORDS] ( UNIT )
SELECT BUS.UNIT
FROM BUS
WHERE (((BUS.RC2)="RC"));
What might be the problem?
Thanks,