开发者

How to replicate two tables with different structures but the same fields?

开发者 https://www.devze.com 2023-02-26 19:36 出处:网络
I have two SQL server databases in different locations.I want to do something like replication. this is my scenario:

I have two SQL server databases in different locations.I want to do something like replication. this is my scenario: In the first data base I have a table with following structure:

tbl_worker
_Name开发者_如何学C  nvarchar(10)
family nvarchar(20)
State  int
city   int

and in second data base I have following table:

tbl_employee
_Name   nvarchar(20)
family  nvarchar(15)
Address nvarchar(30)
Tell    nvarchar(14)
State   int
city    int

as you see the structure of my tables in two different data bases are not the same. but I want to replicate just State and city fields. if the state and city in the first data base changed in second data base must be changed and vice versa. How can I do it? Can I do it with replication and how?


When you define the article, you'll have to set the @vertical_partition parameter to true and then add the columns that you want with sp_articlecolumn.

0

精彩评论

暂无评论...
验证码 换一张
取 消