在一个表中定义了这样的一个索引:stu_limit_table.sub_number_unique为何在删除时显示:不允许对索引 'stu_limit_table.sub_number_unique' 显式地使用 DROP INDEX。该索引正用于 UNIQUE KEY 约束的强制执行。那应该如何删除这个索引呢???能不能检查到是在那里被引用了呢?
2 回答
回首忆惘然
TA贡献1847条经验 获得超11个赞
--找出UNIQUE 约束所在的表
select o.name as [约束所在表],c.name as [关联字段]
from sys.objects o join sys.foreign_key_columns f on o.object_id=f.parent_object_id
join sys.columns c on o.object_id=c.object_id
where f.referenced_object_id=object_id('你的表名')
--查找约束名字
exec sp_helpconstraint [约束所在表]
--删除该约束
alter table [约束所在表] drop constraint XXXX
--最后删除你的索引
drop index stu_limit_table.sub_number_unique on tbname(column)
- 2 回答
- 0 关注
- 1788 浏览
添加回答
举报
0/150
提交
取消