原因:
Oracle11g默认对空表不分配segment,
1.查出空白
select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0;
2执行语句 来分配segment
3使用exp语句导出就可以了
来源:51CTO
作者:kevin_cat
链接:https://blog.csdn.net/kevin_cat/article/details/101062205