How can I add a constraint that references a foreign column from another database?
Some time ago I read that it can be done with linked server and others say with triggers. What's the preferred way of doing this if that's possible at all?
Thanks!
|
How can I add a constraint that references a foreign column from another database? Some time ago I read that it can be done with linked server and others say with triggers. What's the preferred way of doing this if that's possible at all? Thanks! |
|||
|
|
|
Use an instead of trigger (you may or may not need linked servers depending on whether the other database is on a differnt server). Make sure the trigger can handle multiple row inserts/updates/deletes. I'd also suggest moving the records that fail the check to an exception table. |
|||
|
|
|
Linked servers will not work. Related question: Can you have a Foreign Key onto a View of a Linked Server table in SQLServer 2k5? |
|||||
|
|
Foreign keys cannot go across database boundaries. If you try to do this, you'll get:
If you need to enforce some kind of relationship between two separate databases, then yes - you might need a linked server (if that second database is on a second server), and possibly triggers - but all of those things will be very hard to get right, very inefficient and very error prone. One way you might be able to do this would be data replication - replicate the table you want to reference into your source database, and then establish a foreign key relationship with that replicated table. But that will never be quite "live" and "real-time" - there will also be a bit of a lag in the data replication. |
|||
|
|