For example if I have DB_1 and table
in it Table_1
and several columns in that table including Column_5
.
Then there is a second database
locally DB_2 with Table_6
and in it Column_6
.
Is there a way to create some sort of link between DB_1.Table_1.Column_5
and DB_2.Table_6.Column_6
so when selects or inserts are done in DB_1.Table_1.Column_5
it knows to get or set that data in DB_2.Table_6.Column_6
?
I know I can sync the two together and/or use triggers but
- We don't want to take the space in DB_1 (to store same data at two places) and
- Don't want to modify the higher level application that sits on top of DB_1 to change the queries to use a column from a linked server.
At this point there is no application that sits on top of DB_2.