I have a database where were we have our user and client data. I am developing an application that will have a separate database but would like to create referential integrity on the user and client data residing in the first one. What is the best strategy for doing this? Both databases reside on the same 2005 Sql Server.
Initially I thought that using views referencing the DB1 tables would do the trick since they allow modification and updates but it is not possible to create a foreign key on a view so this is an issue.
Thanks!
Olja