标签: sql database oracle constraints
尝试删除一个唯一约束我遇到了这样的错误:
ORA-02273: this unique/primary key is referenced by some foreign keys
如何查找引用我的唯一约束的外键列表?
答案 0 :(得分:29)
select * from all_constraints where constraint_type='R' and r_constraint_name='YOUR_CONSTRAINT';