반응형
select c.constraint_name as "foreign key", p.constraint_name as "referenced key", p.constraint_type, p.owner, p.table_name
from dba_constraints c, dba_constraints p
where c.owner = '&OWNER'
and c.table_name = '&TABLE_NAME'
and c.constraint_type = 'R'
and c.r_owner = p.owner
and c.r_constraint_name = p.constraint_name;
'DBMS > Oracle' 카테고리의 다른 글
index unusable 확인(index 깨진거 확인 쿼리) (0) | 2022.07.04 |
---|---|
index rebuild 하는 방법 (0) | 2022.07.04 |
index pk(PRIMARY KEY) 인덱스 삭제 (0) | 2022.07.04 |
index parallerl / nologging상태 체크 (0) | 2022.07.04 |
12c이후부터 lock 모니터링 권한 오류시 (0) | 2022.07.04 |