http://sejikun.tistory.com/trackback/710 위 내용 참고
oracle startup 이 안되어
SQL> select * from v$flash_recovery_area_usage;
SQL> select * from v$recovery_file_dest;
로 확인하니 Archive log 가 97% 차 있는것을 확인
#$ORACLE_HOME/bin/rman (이때 db는 startup mount 로 구동된 상태에서 확인해야함)
RMAN> connect target /
RMAN> LIST ARCHIVELOG LIKE '%.arc';
RMAN> DELETE ARCHIVELOG LIKE '%.arc';
# $ORACLE_HOME/bin/rman
RMAN>connect target /
RMAN>crosscheck archivelog all; -> marks the controlfile that the archives have been deleted
RMAN>delete expired archivelog all; -> deletes the log entries identified above
위와 같이 삭제처리후 재기동 하여 정상동작 확인
'핸디소프트 > 일일일~' 카테고리의 다른 글
Cent OS 6.4 설치시 raid1 환경 구성 (0) | 2013.06.19 |
---|---|
서버실 다운 (0) | 2013.06.07 |
CentOS 6.2 / 6.3 에서 i18n 설정후 초기화면 안나오는 문제 (0) | 2012.09.07 |
CentOS 6.3 에서 telnet 설정 (1) | 2012.09.07 |
dovecot, postfix 버전 확인 (0) | 2012.09.05 |