适用于:
Oracle Server - Enterprise Edition
Information in this document applies to any platform.
Checked for relevance on 18-Jul-2010
目的:
这个文件解释怎样手动重组SYS.AUD$数据字典表。TRUNCATE操作针对数据字典表SYS.AUD$是不被支持的,针对一些其他的数据字典对象。
从oracleRDBMS 10.2开始,重构表SYS.AUD$能够通过DBMS_AUDIT_MGMT包来完成。
运用范围:
当审计设置,它是常见的,很多条目被写入审计跟踪表SYS.AUD $。此表属于由位于表系统的SYS拥有的数据字典。此表的增长超出了是什么水平认为是合理的,因此应定期改组。
You could consider two options:
1. 改变表SYS.AUD$存储的行为,以更好地适应需求。
2.如果这个表经常被选择性的删除,使用重组以最佳填写所有的块。
1. Changing the storage behaviour of SYS.AUD$
---------------------------------------------
Historically Oracle has changed the default storage parameters for the AUD$
table over time. The storage parameters of the AUD$ table in 7.3.4, 8.1.7 and
9.0.1 show that initial and mostly default value for next_extent has grown
from version 7.3.4 to the more current releases.
SQL> connect / as sysdba
Connected.
SQL> col table_name format a7
SQL> select table_name, initial_extent i_extent ,next_extent n_extents
2 , max_extents m_extents
3 , pct_free, pct_used, pct_increase
4 from dba_tables where table_name='AUD$';
-> in V734:
TABLE_N I_EXTENT N_EXTENTS M_EXTENTS PCT_FREE PCT_USED PCT_INCREASE
------- ---------- ---------- ---------- ---------- ---------- ------------
AUD$ 10240 10240 121 10 40 50
-> in V817:
TABLE_N I_EXTENT N_EXTENTS M_EXTENTS PCT_FREE PCT_USED PCT_INCREASE
------- ---------- ---------- ---------- ---------- ---------- ------------
AUD$ 16384 16384 505 10 40 50
-> in V901:
TABLE_N I_EXTENT N_EXTENTS M_EXTENTS PCT_FREE PCT_USED PCT_INCREASE
------- ---------- ---------- ---------- ---------- ---------- ------------
AUD$ 16384 1048576 2147483645 10 40 50
-> in V102(in a locally managed tablespace)
TABLE_N I_EXTENT N_EXTENTS M_EXTENTS PCT_FREE PCT_USED PCT_INCREASE
------- ---------- ---------- ---------- ---------- ---------- ------------
AUD$ 65536 2147483645 10 40
如果你的审计水平和数据字典表的增长一样快,那么你需要考虑改变存储值。
从10.2开始,没有哪个版本不需要做这些,当AUD$表本创建并且使用本地管理的表空间。