
批量move table\者重建索引
select ‘alter table ‘||table_name||’ move tablespace rpt;’ from user_tables; select ‘alter...
select ‘alter table ‘||table_name||’ move tablespace rpt;’ from user_tables; select ‘alter...
收缩一张表时,Oracle会以占用最小存储空间的方式来重新组织数据块。Delete操作通常不会降低高水位线,当做全表扫描时oracle会扫描高水位线下的块,一个表的数据可能不多但执行时间却很长,通常需要注意高水位下会有很多空闲的块存在。通常...