oracle exp 排除某些表导出其他表

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...)

你可能感兴趣的:(Oracle,oracle,其他,数据库,sql)