oracle数据库无法导出空表的问题解决(开始于oracle11g)

--设置系统参数
alter system set deferred_segment_creation=false;

Select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0 or num_rows is null;

原文地址:https://www.cnblogs.com/Stir-friedEggplant/p/10578860.html