查询空表

select table_name from user_tables where num_rows=''

生成分配空间的执行语句

select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0 or num_rows is null

复制出来执行即可。

05-11 14:05