未找到段的定义

1、查找空的对象有哪些:
   select table_name from user_tables where num_rows=0;
2、拼出给空表分配段空间语句:  
select 'alter table '||table_name||' allocate extent(size 64k);' from user_tables where num_rows=0;
    执行拼出的语句即可。

之后,调整,使得之后新建的空表可以被导出。
alter system set DEFERRED_SEGMENT_CREATION=FALSE;

原文地址:https://www.cnblogs.com/fuhaha/p/9473207.html