修复ORA-02273:此唯一/主键由某些外键引用

whe*_*eph 12 sql database oracle constraints

试图删除一个唯一约束我有这样的错误:

ORA-02273: this unique/primary key is referenced by some foreign keys
Run Code Online (Sandbox Code Playgroud)

如何查找引用我的唯一约束的外键列表?

Eri*_*ler 32

select * from all_constraints 
where constraint_type='R' and r_constraint_name='YOUR_CONSTRAINT';
Run Code Online (Sandbox Code Playgroud)