1、查询当前用户的空表;
select count(*) from user_tables where NUM_ROWS=0;
2、生成执行语句
Select ‘alter table ‘||table_name||‘ allocate extent;‘ from user_tables where num_rows=0
3、执行第2步中生成的语句
时间: 2024-10-03 18:01:38
1、查询当前用户的空表;
select count(*) from user_tables where NUM_ROWS=0;
2、生成执行语句
Select ‘alter table ‘||table_name||‘ allocate extent;‘ from user_tables where num_rows=0
3、执行第2步中生成的语句