笔记:Oracle清理sysaux表空间

1,查看sysaux表空间对象大小

select * from 
(select segment_name,sum(bytes)/1024/1024 total_mb,tablespace_name from dba_segments where tablespace_name='SYSAUX' 
group by segment_name,tablespace_name order by 2 desc)
  where rownum <=20;

2,执行删除snmpshot

exec DBMS_WORKLOAD_REPOSITORY.DROP_SNAPSHOT_RANGE (low_snap_id =>1,high_snap_id => 30000);

3,收缩高水位

查看分区:
select segment_name,partition_name,bytes/1024/1024/1024 gb from dba_segments where segment_name='WRH$_ACTIVE_SESSION_HISTORY';

收缩:
alter table WRH$_ACTIVE_SESSION_HISTORY move partition WRH$_ACTIVE_1482382090_0;
alter table WRH$_ACTIVE_SESSION_HISTORY move partition WRH$_ACTIVE_SES_MXDB_MXSN;

4,重建索引

查看索引:
select index_name from dba_indexes where table_name='WRH$_ACTIVE_SESSION_HISTORY';

select partition_name from dba_ind_partitions where index_name='WRH$_ACTIVE_SESSION_HISTORY_PK';

重建:
alter index WRH$_ACTIVE_SESSION_HISTORY_PK rebuild partition WRH$_ACTIVE_1357933872_0;

alter index WRH$_ACTIVE_SESSION_HISTORY_PK rebuild partition WRH$_ACTIVE_SES_MXDB_MXSN;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值