Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Setting Releations
Message
 
To
All
General information
Forum:
Microsoft SQL Server
Category:
Database management
Title:
Setting Releations
Environment versions
SQL Server:
SQL Server 2000
Application:
Web
Miscellaneous
Thread ID:
01592613
Message ID:
01592613
Views:
70
Hi All, I want to create a ( in Fox terms ) relation between two tables in my database , one is Address with a pk of AddressID the other Customer with a foreign key AddressID , many Customers can have the same AddressID , this what I've tried in SSMS
ALTER TABLE address ADD CONSTRAINT FKAddress_Customer FOREIGN KEY
(
AddressID
     
) REFERENCES Customer(AddressID)
but I receive the error
Msg 1776, Level 16, State 0, Line 1
There are no primary or candidate keys in the referenced table 'customer' that match the referencing column list in the foreign key 'FKAddress_Customer'.
Msg 1750, Level 16, State 0, Line 1
Could not create constraint. See previous errors.
the customer AddressID is indexed and not nullable so I don't understand why it doesn't work.
Regards,
Peter J. Kane



Pete
Next
Reply
Map
View

Click here to load this message in the networking platform