SELECT level,sys_connect_by_path(referenced_name||'.'||t.referenced_type, ' <- ') || ' <- ' || NAME||'.'||t.type AS path,t.*
FROM dba_dependencies t
WHERE 1=1
START WITH UPPER(t.referenced_name) = TRIM(UPPER('DBA_TABLES')) --TROCAR DBA_TABLES PELO OBJETO QUE SE DESEJA PROCURAR
CONNECT BY nocycle t.referenced_name = PRIOR NAME;
Orabr
Base e troca de conhecimentos, divulgação de oportunidades e projetos