오라클 에러 정리
http://www.dbmotive.com/support/oracle-error-codes/- [ORA-07445: exception encountered: core dump [kglic0()+788] [SIGSEGV] [ADDR:0x229000000018] [PC:0x10123F554] [Address not mapped to object] []]
- ORA-07445 예외 발견: 코아 덤프 [%s] [%s] [%s] [%s] [%s] [%s]
- 플래시백 쿼리의 사용 기간설정이 너무 길게해서 생긴 오류
-
플래시백 쿼리 기간을 줄인다.
- [ORA-12751: cpu time or run time policy violation]
- *Document: NO
*Cause: A piece of code ran longer than it is supposed to
*Action: If this error persists, contact Oracle Support Services. - Shared Pool의 사용 가능한 Memory 가 시간이 흐름에 따라 작은 조각으로 분할되어 지는데
큰 메모리를 사용하는 job이 실행되는 경우 Shared Memory 부족하여 발생할 수 있는 오류라고 합니다.
Shared Pool 단편화를 flush 하였습니다.
-> SQL> alter system flush shared_pool;