select parent, child, level from (
select parent_table.table_name parent, child_table.table_name child
from user_tables parent_table,
user_constraints parent_constraint,
user_constraints child_constraint,
user_tables child_table
where parent_table.table_name = parent_constraint.table_name
and parent_constraint.constraint_type IN( 'P', 'U' )
and child_constraint.r_constraint_name = parent_constraint.constraint_name
and child_constraint.constraint_type = 'R'
and child_table.table_name = child_constraint.table_name
and child_table.table_name != parent_table.table_name
)
start with parent = 'DEPT'
connect by prior child = parent
zou moeten werken (natuurlijk de tabelnaam vervangen) ervan uitgaande dat alles in hetzelfde schema staat. Gebruik de DBA_-versies van de datadictionary-tabellen en voorwaarden voor de kolommen OWNER en R_OWNER als u afhankelijkheden van verschillende schema's moet afhandelen. Bij nader inzien houdt dit ook geen rekening met zelfreferentiële beperkingen (d.w.z. een beperking op de EMP-tabel dat de MGR-kolom verwijst naar de EMPNO-kolom), dus u zou de code moeten wijzigen om dat geval af te handelen als u moet handelen met zelfreferentiële beperkingen.
Voor testdoeleinden heb ik een paar nieuwe tabellen toegevoegd aan het SCOTT-schema die ook verwijzen naar de DEPT-tabel (inclusief een kleinkindafhankelijkheid)
SQL> create table dept_child2 (
2 deptno number references dept( deptno )
3 );
Table created.
SQL> create table dept_child3 (
2 dept_child3_no number primary key,
3 deptno number references dept( deptno )
4 );
Table created.
SQL> create table dept_grandchild (
2 dept_child3_no number references dept_child3( dept_child3_no )
3 );
Table created.
en geverifieerd dat de query de verwachte uitvoer heeft geretourneerd
SQL> ed
Wrote file afiedt.buf
1 select parent, child, level from (
2 select parent_table.table_name parent, child_table.table_name child
3 from user_tables parent_table,
4 user_constraints parent_constraint,
5 user_constraints child_constraint,
6 user_tables child_table
7 where parent_table.table_name = parent_constraint.table_name
8 and parent_constraint.constraint_type IN( 'P', 'U' )
9 and child_constraint.r_constraint_name = parent_constraint.constraint_name
10 and child_constraint.constraint_type = 'R'
11 and child_table.table_name = child_constraint.table_name
12 and child_table.table_name != parent_table.table_name
13 )
14 start with parent = 'DEPT'
15* connect by prior child = parent
SQL> /
PARENT CHILD LEVEL
------------------------------ ------------------------------ ----------
DEPT DEPT_CHILD3 1
DEPT_CHILD3 DEPT_GRANDCHILD 2
DEPT DEPT_CHILD2 1
DEPT EMP 1