1. 查询:排除某个表导出其他表
select listagg(table_name, ',') within group(order by table_name)
from dba_tables
where owner in ('用户名')
AND table_name not in ('表1', '表2',...)
order by owner;
2. 整理导出命令
exp:排除某个表导出其他表
exp 用户名/密码@实例 file=C:\Users\Administrator\Desktop\ceshi.dmp TABLES= (表1,表2,...)
所有评论(0)