Hello.
There are two databases on two different servers.
Server 1, database X, has various tables, and I want Server 2, database Y to house a subset of the fields from the first one. Then, Server 2 has about 10 extra tables on 6 pulled from Server 1. It is important not to have the tables in the same database.
DTS can delete and re-pull the data from Server 1, but the foreign key constraints on Server 2 complicate matters. Data is not deleted from Server 1, so I'm not worried about orphan-data.
Before I go this route: Can I create a View of the data from Server 1, then put the foreign key constraints on a View?
There are two databases on two different servers.
Server 1, database X, has various tables, and I want Server 2, database Y to house a subset of the fields from the first one. Then, Server 2 has about 10 extra tables on 6 pulled from Server 1. It is important not to have the tables in the same database.
DTS can delete and re-pull the data from Server 1, but the foreign key constraints on Server 2 complicate matters. Data is not deleted from Server 1, so I'm not worried about orphan-data.
Before I go this route: Can I create a View of the data from Server 1, then put the foreign key constraints on a View?