1. 查询表在哪个包里
dba_source【存储过程】
select s.*
from dba_source s
where s.owner = 'DWAPP' --schema
and upper(s.text) like '%INTO 表名%'
and type = 'PACKAGE BODY'
--name :包名
2、表注释(字段)
dba_col_comments 【owner, table_name, column_name, comments】
3、表的基本信息
dba_tab_columns 【owner, table_name, column_name, data_type, data_length, global_stats, data_upgraded, histogram 】
4、同义词
dba_synonyms 【owner, synonym_name, table_owner, table_name, db_link 】