[解决]PL/SQL 导出表时出现EXP-00011
select table_name from user_tables where NUM_ROWS=0; select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0;

[解决]PL/SQL 导出表时出现EXP-00011select table_name from user_tables where NUM_ROWS=0; select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0;
|