oracle账号总是被锁Oracle查看表之间的键关联关系

Oracle查看表之间的键关联关系

 

select a.constraint_name, a.table_name, b.constraint_name 

 

from user_constraints a, user_constraints b 

 

where a.constraint_type = 'R' 

 

and b.constraint_type = 'P' 

 

and a.r_constraint_name = b.constraint_name

oracle账号

 

P 代表主键 

 

R 代表外键

此条目发表在oracle metalink账号分类目录,贴了标签。将固定链接加入收藏夹。