一、先查询一下哪些表是空的:
select table_name from user_tables where NUM_ROWS=0;
二、下面咱们经过select 来生成修改语句:
select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0
三、而后就在结果窗口里面生成了下面那些东西:
alter table E2USER_STATE allocate extent;
alter table ENTERPRISE_E2USER allocate extent;
alter table ENTERPRISE_INFO_TYPE allocate extent; spa
以后在导出就能够导出记录数为0的表table