Error - due to key violation ???

  • Thread starter Thread starter SpookiePower
  • Start date Start date
Since fId is an AutoNumber, odds are that the same values exist in both
tables. You can't add fId 123 from taSlukkere1 to taSlukkere if fId 123
already exists in tbSlukkere.

When bringing in the data from the second table, bring everything EXCEPT
fId. New values of fId will be assigned for all of the new rows.
 
Douglas said:
Since fId is an AutoNumber, odds are that the same values exist in both
tables. You can't add fId 123 from taSlukkere1 to taSlukkere if fId 123
already exists in tbSlukkere.

I can see that....now :)

Thanks a lot :)

When bringing in the data from the second table, bring everything EXCEPT
fId. New values of fId will be assigned for all of the new rows.

I will try that. Thanks.
 
Back
Top