更改在 SQL Server 2008 R2 中复制的表
我们有两个数据库,其中的一些表是复制的。
我们想要向表中添加新行并将它们包含在复制中。
我们怎样才能做到这一点?
示例:
我们有 [dbo1].Table1
和 [dbo2].Table2
,它们与所有列一起复制并且具有相同的结构。
我们想要向两个表添加新列 Column1
并将该列包含到复制中。
We have two databases and some tables in them are replicated.
We want to add to table new rows and also include them in replication.
How can we do this?
Example:
We have [dbo1].Table1
and [dbo2].Table2
that are replicated with all columns and have identically structure.
We want to add new column Column1
to both of the tables and include this column to replication.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“对发布数据库进行架构更改” 这篇文章应该涵盖大部分内容你需要知道。与旧版本的 SQL Server 不同,您应该只能进行 DDL 更改(假设您没有取消设置复制默认值)。
正如本文提到的,您将无法使用 SSMS 进行这些更改。
The article "Making Schema Changes on Publication Databases" should cover most of what you need to know. Unlike older versions of SQL Server, you should just be able to make the DDL changes (assuming you haven't unset the replication defaults).
As the article mentions, you won't be able to use SSMS to make these changes.