【故障處理】ORA-1688: unable to extend table AUDSYS.AUD$UNIFIED
在檢查告警日誌時,發現日誌中重複出現了大量ORA-1688 的報錯
ORA-1688: unable to extend table AUDSYS.AUD$UNIFIED partition SYS_P1325 by 1024 in tablespace SYSAUX
ORA-1688:unable to extend table AUDSYS.AUD$UNIFIED partition SYS_P2154 by 1024 intablespace SYSAUX
AUDSYS.AUD$UNIFIED 這個表是統一審計表,包含了很多的審計資訊,導致表佔用了大量SYSAUX 的空間 。立即檢視SYSAUX表空間使用情況,發現表空間使用已經達到 100%。
若對審計沒有特別要求的情況下,建議關閉審計
SQL> alter system set audit_trail=none scope=spfile;
需要重啟生效
解決方法
解決方法有兩種,
一種方法是使用 ALTER TABLESPACE ADD DATAFILE 給 SYSAUX 表空間擴容;
另一種方法
直接清理統一
審計這張表
SQL> truncate table audsys.aud$unified;
truncate table audsys.aud$unified
*
ERROR at line 1:
ORA-46385: DML and DDL operations are not allowed on table "AUDSYS"."AUD$UNIFIED".
執行以下語句即可 (下面儲存過程僅支援 12c 及以上版本 )
SQL> BEGIN
DBMS_AUDIT_MGMT.CLEAN_AUDIT_TRAIL(
audit_trail_type => DBMS_AUDIT_MGMT.AUDIT_TRAIL_UNIFIED,
container => DBMS_AUDIT_MGMT.CONTAINER_CURRENT,
use_last_arch_timestamp => FALSE);
END;
/
---- end ----
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31529886/viewspace-2740445/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle表空間不足:ORA-01653: unable to extend tableOracle
- [20230301]學習UNIFIED audit-整理AUDSYS.AUD$UNIFIED.txtNifi
- [20230303]學習UNIFIED audit--定期清理AUDSYS.AUD$UNIFIED.txtNifi
- [20230305]AUDSYS.AUD$UNIFIED ORA-46385.txtNifi
- [20230403]學習UNIFIED audit--驗證清理AUDSYS.AUD$UNIFIED.txtNifi
- [20230301]學習UNIFIED audit-移動AUDSYS.AUD$UNIFIED到別的表空間.txtNifi
- ORA-1653: unable to extend table by 1024 in tablespace(oracle表空間滿了的解決方案)Oracle
- 【故障處理】ORA-600:[13013],[5001]故障處理
- linux故障處理Linux
- 故障分析 | Greenplum Segment 故障處理
- GPON網路故障如何處理?GPON網路故障處理流程
- ORA-01652: unable to extend temp segment by 128 in tablespace TEMP
- 結構化文字處理利器 unified 生態介紹Nifi
- Oracle更新Opatch故障處理Oracle
- teams登入故障處理
- 微服務的故障處理微服務
- MySQL show processlist故障處理MySql
- 線上故障處理手冊
- impdp ORA-30036: unable to extend segment by 8 in undo tablespace 'UNDOTBS1'
- GaussDB(分散式)例項故障處理分散式
- 如何處理HTTP 503故障問題?HTTP
- Oracle 10g RAC故障處理Oracle 10g
- ORA-01591錯誤故障處理
- Oracle 11.2.0.4 Dataguard兩則故障處理Oracle
- 【故障處理】TNS-04610問題
- Oracle DG同步失敗故障處理(二)Oracle
- NO.A.0001——zabbix常見故障的處理
- Oracle client安裝the jre is 0故障處理Oracleclient
- 體檢伺服器nginx故障處理伺服器Nginx
- hbase 故障的處理方案。 (轉載文章)
- iptables報錯!iptables-restore unable to initialize table 'filterRESTFilter
- 金融行業現場故障處理實錄行業
- TS - 處理故障的一些通用方法
- OracleORA-03113 ORA-600 [4193]故障處理Oracle
- 【故障處理】ORA-28547: connection to server failed, probableServerAI
- 【故障處理】ORA-3113 "end of file on communication channel"
- hillstone現場故障處理指導手冊
- 叢集故障處理之處理思路以及健康狀態檢查(三十二)