确保复制数据库的引用完整性的最佳方法是什么?

发布于 2025-01-08 03:08:54 字数 176 浏览 0 评论 0原文

使用 SQL SERVER 2005,我有几个关于复制和引用完整性的问题。

1) 复制是否处理引用完整性?

2) 如果我在一个事务中,在源数据库上执行插入到父表,然后插入到子表 - 复制数据库也会以相同的方式表现吗?即,在复制数据库记录中,在子表中引用它之前,它必须存在于主表中?

谢谢

Using SQL SERVER 2005, I have a couple of questions on Replication and referential integrity.

1) Does Replication handle referential integrity?

2) If I do an Insert to Parent table and then to Insert to Child table, in one transaction, on Source DB - will Replicated DB also behave in the same manner? I.e. In Replicated DB record must be present in Master table, before it is referenced in child table?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

难忘№最初的完美 2025-01-15 03:08:54

假设复制是事务性的,并且您的发布者具有引用完整性,那么所有订阅者都将保持同步,因此将保持引用完整性。插入的顺序是一致的。

Assuming replication is transactional and you have referential integrity on your publisher, then any subscribers will be in sync and therefore referential integrity will be maintained. The order of inserts is consistent.

违心° 2025-01-15 03:08:54

使用复制不能保证引用完整性

当从主表中删除一行并且该记录仍然存在于引用它的外键表中时,引用完整性得到维护

使用主键和外键将保证它
只是为了获得更多信息,有类似“ON DELETE CASCADE”的命令
如果从外键中删除,将从主键中删除该键

Using replication will not guarantee you referential integrity

Referential integrity is mainted when a row is deleted from the primary table and the record still exists in its foreign key table where it is refrenced

Using primary key and foreign key will guarantee it
and just for additional information there are comand like "ON DELETE CASCADE"
will delete the key from primary if deleted from foreign key

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