시스템에서 확인해보니 아래와 같은 에러의 내용이었다.
[unixoperator] oerr ora 257
00257, 00000, "archiver error. Connect internal only, until freed."
// *Cause: The archiver process received an error while trying to archive
// a redo log. If the problem is not resolved soon, the database
// will stop executing transactions. The most likely cause of this
// message is the destination device is out of space to store the
// redo log file.
// *Action: Check archiver trace file for a detailed description
// of the problem. Also verify that the
// device specified in the initialization parameter
// ARCHIVE_LOG_DEST is set up properly for archiving.
그래서 우리 쪽 용량을 df -k 명령어로 unix에서 체크해보니 공간은 전혀 모자르지 않았다.
타 시스템의 정보를 가져오기위해 DB link를 사용한 쿼리였는데, 그 시스템에서 발생했던 오류였던 것이였다.
이런 경우에는 아크이브 로그 중 예전 것을 삭제하여 공간을 충분히 만들어주면 해결이 된다고 한다.