oracle 空表导出dmp会报错

步骤一、查找出来的语句全部复制并执行

select 'analyze table '||table_name||' compute statistics;' from user_tables;

步骤二、查找出来的语句全部复制并执行

select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0

原文地址:https://www.cnblogs.com/wdw31210/p/7607878.html