查询空表
select table_name from user_tables where num_rows='0'
生成分配空间的执行语句
select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0 or num_rows is null
复制出来执行即可。
本文共 240 字,大约阅读时间需要 1 分钟。
查询空表
select table_name from user_tables where num_rows='0'
生成分配空间的执行语句
select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0 or num_rows is null
复制出来执行即可。
转载于:https://www.cnblogs.com/zjfjava/p/9739305.html