I have a problem with multiple cascade path error. Here are my tables:
Table (Companies)
CompanyCode (PK)
....
Table (Aircraft)
AircraftRegistration (PK)
OwnerCode (FK to CompanyCode)
OperatorCode (FK to CompanyCode)
....
I simply want to update the ownercode and operatorcode foreign keys in the aircraft table when I update the primary key in companies.
Is the correct way to get around this problem to use triggers?