如何复制两个结构不同但字段相同的表?

发布于 2024-11-02 04:11:30 字数 467 浏览 2 评论 0原文

我在不同的位置有两个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

万劫不复 2024-11-09 04:11:30

定义文章时,必须将 @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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文