:
select * from dba_tab_comments
where owner not in ('SYS', 'SYSTEM')
select * from dba_col_comments
where owner not in ('SYS', 'SYSTEM')
: ERD 600 , () . "" , .
Obviously, you want to make sure that the whole circuit has foreign keys. You can see
select * from dba_constraints
where constraint_type = 'R' and
owner not in ('SYS', 'SYSTEM')
to see if all foreign keys.
source
share