// ORA-04030: out of process memory Tips
// ORA-00600: internal error code, arguments: [729], [80], [space leak], [], [], [], [], [], [], [], [], []
// 2번째 argument가 space leak 발생한 chunk의 사이즈를 나타내줌.
// 에러 원인
heap에 존재하는 chunk 중 free할 수 있는 chunk가 존재하지 않아 memory leak 발생.
// 해결 방안
- Increase pga_aggregate_target
- Decrease sort_area_size and/or hash_area_size
- Move to multi-threaded server (a.k.a. MTS or shared servers)
// 임시방편으로 space leak 에러 메시지를 안뜨게 설정할 수 있음.
event="10262 trace name context forever, level <number of bytes_size>"
'Oracle' 카테고리의 다른 글
[Oracle] oracle utility (0) | 2022.06.15 |
---|---|
[Oracle] bbed (block edit) ORA-01578: ORACLE data block corrupted (0) | 2022.06.15 |
[Oracle] ORA-38856: cannot mark instance UNNAMED_INSTANCE_2 (redo thread 2) as enabled (0) | 2022.01.03 |
[Oracle] ORA-31640: unable to open dump file "....../scott.dmp" for read (0) | 2021.11.19 |
[Oracle] ORA-28002 : the password will expire within %s days (0) | 2021.11.03 |