从truncate sys.aud$想到的删除大表的方法

昨天,在11g数据库上发现了sys.aud$表增大到8G左右,清除方法如下:

第一步
EXEC DBMS_AUDIT_MGMT.INIT_CLEANUP(DBMS_AUDIT_MGMT.AUDIT_TRAIL_AUD_STD, 12);
第二步
EXEC DBMS_AUDIT_MGMT.CLEAN_AUDIT_TRAIL(DBMS_AUDIT_MGMT.AUDIT_TRAIL_AUD_STD, FALSE);
不执行第一步会报ORA-46258错误。
但问题是,在第一次执行第一步的时候,系统会把AUD$表从SYSTEM 表空间move到SYSAUX表空间。

联机文档里的说明如下:

INIT_CLEANUP Procedure

 

This procedure sets up the audit management infrastructure and a default cleanup interval for the audit trail records. If the audit trail tables are in the SYSTEM tablespace, then the procedure moves them to the SYSAUX tablespace.

 

如果SYSAUX的空间不够,又没有设置autoextend on,就会报错ORA-4626。

ORA-46267: Insufficient space in 'SYSAUX' tablespace, cannot complete operation

于是又找了metalink notes How to Truncate, Delete, or Purge Rows from the Audit Trail Table AUD$ [ID 73408.1],可以对此表进行truncate。

但由于是正式库,怕truncate操作会带来其他的一些问题,不直接做truncate,而是执行以下命令:

truncate table sys.aud$ reuse storage;

alter table sys.aud$ deallocate unused keep 8640m;

 

alter table sys.aud$ deallocate unused keep 7000m;

alter table sys.aud$ deallocate unused keep 6000m;

...

alter table sys.aud$ deallocate unused keep 10m;

truncate过程1-2分钟之内结束,最后sys.aud$变成10M。

如果想删除大表也可以这么操作(delete操作耗资源),只是不一定那么快释放空间,这还要看具体情况了。

你可能感兴趣的:(删除,truncate,大表,audit,aud$)