oracle11g导出空表的解决办法
select 'alter table '||table_name||' allocate extent;' from user_tables where segment_created='NO'

执行上方查询出来的alter语句即可
select 'alter table '||table_name||' allocate extent;' from user_tables where segment_created='NO'

执行上方查询出来的alter语句即可