我想介绍一下如何删除外键失败的行
在给定的 SQL Server 2008 表中,我有一个应启用的禁用外键约束。我无法启用此约束,因为此表中的某些行与此外键冲突。这些行无效。
是否有一个简单的技巧可以删除与此约束冲突的数据?
In a given SQL Server 2008 table I have a disabled foreign key constraint that should be enabled. I cannot enable this constraint because there are rows in this table that conflict with this foreign key. These rows are invalid.
Is there a simple trick that removes data that is conflicting with this constraint?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一种方法
SQL 脚本
This would be one way to do it
SQL Script
您必须手动删除所有不遵守约束的行:可能您需要一个 T-SQL 语句来获取需要删除的所有行(可能使用外连接),然后删除它们
you have to manually remove all the row that doesn't respect the constrain: probably you will need a T-SQL statement to get all the row you need to remove(perhaps using an outer join) then remove them
您可以使用以下查询识别有问题的数据:
You can identify the offending data with this query: