본문 바로가기 메뉴 바로가기

대표이미지

[오라클] DB 에러 : table SYS.AUD$ by 8192 in tablespace

2022. 4. 21.

 

ORA-00604 : error occurred at recursive SQL level 1

ORA-01653 : unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM

ORA-02002 : error while writing to audit trail

ORA-00604 : error occurred at recursive SQL level 1

ORA-01653 : unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM

테이블 스페이스 확장 불가 

audit trail 이 쌓이는 장소가 가득 차서 비워줘야하는 상태

 

해결 방법

linux 등 서버 루트 권한 필요

su - oracle

sqlplus /nolog

connect /as sysdba

truncate table SYS.AUD$;

 

출처: https://cofs.tistory.com/342 [CofS]

댓글 갯수
TOP