View Full Version : delete table links and then relink necessary?


Raza
02-11-2002, 07:03 AM
I have an append query that Im getting key validation errors on..in help it suggested I delete the links and then relink..but of course I couldnt find out how in the help system..

any ideas?

Raza
02-11-2002, 07:55 AM
update:

yup thats what I had to do..now if I could just automate the process =)

Pat Hartman
02-11-2002, 04:10 PM
Rather than removing the RI, you should re-arrange your table load order so that the tables are loaded in an order that will not cause RI errors.

Raza
02-12-2002, 03:10 AM
Can you expound a little? Im not sure what you mean by table load orders.


Thanks,

The Razzzz

Pat Hartman
02-12-2002, 04:39 AM
If you have an Order table that has a foreign key of CustomerId that refers to a customer table, you need to load the customer table before you can load the Order table. If you don't you will get RI errors because the customer record for an order will not already exist in the customer table.