Oracle ARCHIVELOG 삭제 하는 방법
2022. 3. 22. 14:53ㆍIT
728x90
오라클 ARCHIVELOG 때문에 Disk가 Full 났다.
더 이상 오라클에 Insert를 못하는 상태도 됬다 ㅠㅠ
ARCHIVELOG를 삭제해 주어야 된다..
RMAN 사용
#$ORACLE_HOME/bin/rman
RMAN> connect target /
RMAN> LIST ARCHIVELOG LIKE '%.arc';
RMAN> LIST ARCHIVELOG ALL;
RMAN> DELETE ARCHIVELOG LIKE '%.arc';
-- 하루치만 남겨 놓고 나머지 삭제
RMAN> delete archivelog all completed before 'sysdate -1';
그럼 다음과 같은 질문을 한다
Do you really want to delete the above objects (enter YES or NO)? yes
yes를 입력하고 Enter
물리적으로 파일을 삭제하려면 해당 경로를 찾아 삭제하자.
-- sys 계정으로
archive log list;
반응형
'IT' 카테고리의 다른 글
LTE 라우터 어떤걸 사야하나 ? LTE 라우터 설정, 통신사별 APN (0) | 2023.03.22 |
---|---|
https를 사용하기 위한 Jetty + SSL(Let's Encrypt) 적용하는 방법 (0) | 2023.02.09 |
PostgreSQL Dynamic SQL bind, INTO How to,, (0) | 2022.03.21 |
PostgreSQL Partition Table Full scan bug (0) | 2022.02.24 |
ORA-01261: Parameter db_recovery_file_dest destination string cannot be translated ORA-01262: Stat failed on a file destination directory (0) | 2022.02.08 |