如何复制两个结构不同但字段相同的表?
我在不同的位置有两个 SQL Server 数据库。我想做一些诸如复制之类的事情。 这是我的场景: 在第一个数据库中,我有一个具有以下结构的表:
tbl_worker
_Name nvarchar(10)
family nvarchar(20)
State int
city int
在第二个数据库中,我有以下表:
tbl_employee
_Name nvarchar(20)
family nvarchar(15)
Address nvarchar(30)
Tell nvarchar(14)
State int
city int
如您所见,两个不同数据库中的表的结构不相同。 但我只想复制州和城市字段。 如果第一个数据库中的州和城市发生变化,则第二个数据库中的州和城市也必须更改,反之亦然。 我该怎么做呢?我可以通过复制来做到这一点以及如何做到吗?
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 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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
定义文章时,必须将 @vertical_partition 参数设置为 true,然后使用 sp_articlecolumn 添加所需的列。
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.