[오라클] 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]
'DB' 카테고리의 다른 글
| [SQL function] 거리 계산 함수 (0) | 2022.10.27 | 
|---|---|
| [Rank] 특정 컬럼으로 순위 매기기 「RANK() OVER 」 (0) | 2022.03.04 | 
| [DB링크] CLOB 테이블 DB링크로 데이터없이 복사하기 (0) | 2021.02.02 | 
| 테이블 컬럼명 select 조회용으로 (0) | 2021.01.30 | 
| [오라클]컬럼 지정조건 값 카운트 (0) | 2021.01.30 |