Here is the table structure;
tblGuestProducts
ProductID PK Compound key, unique, Long integer
GuestID PK Compound key, unique, Long integer
tblGuestAccommodation
AccomID PK
GuestID FK Long Integer
I am trying to establish Referential Integrity between these two tables based on the GuestID but am receiving the message in the title.
Could the problem be that I am trying to use a compound key?
thanks for any help.
tblGuestProducts
ProductID PK Compound key, unique, Long integer
GuestID PK Compound key, unique, Long integer
tblGuestAccommodation
AccomID PK
GuestID FK Long Integer
I am trying to establish Referential Integrity between these two tables based on the GuestID but am receiving the message in the title.
Could the problem be that I am trying to use a compound key?
thanks for any help.