I am trying to set up a new database in SQL Server 2005 and i have a problem with the referential integrity.
If i have two tables (e.g.) i need two update two fields automatically:
tbl_address
addressnumber
name
....
tbl_items
itemname
vendor [-> 1. addressnumber]
manufacturer [-> 2. addressnumber]
...
I can connect one of the two fields from tbl_items to tbl_address with referential integrity. But if i try to add the connection for the second field i will get an error message. It states that it would be in conflict due to a new cascade path.
How do i resolve this?
PS: I did this in Access before. It was not a problem there because Access used a secondary "dummy" table.
If i have two tables (e.g.) i need two update two fields automatically:
tbl_address
addressnumber
name
....
tbl_items
itemname
vendor [-> 1. addressnumber]
manufacturer [-> 2. addressnumber]
...
I can connect one of the two fields from tbl_items to tbl_address with referential integrity. But if i try to add the connection for the second field i will get an error message. It states that it would be in conflict due to a new cascade path.
How do i resolve this?
PS: I did this in Access before. It was not a problem there because Access used a secondary "dummy" table.