Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: memory leak and event 10262
Clueless-
Memory leaks happen for a variety of reasons. Minor bug, typically. Probably nothing to worry about. But, even a small leak of just a few bytes per transaction can add up for a persistent connection.
What is being reported here is a difference in memory allocation between logon and logoff for the session's process memory. Some small chunk of memory allocated for some operation simply did not get released to the operating system properly. At session logoff, all the memory for the process gets released, so a small "leak" is no big deal. The event setting just suppresses the error message for small amounts of memory.
clueless wrote:
>
> hi gang,
>
> I have the following recurring error in my trace file:
> "ORA-00600: internal error code, arguments: [729], [688], [space leak],"
>
> Oracle states that this is a minor memory leak and that I should add the
> following param to the init.ora file to ignore memory leaks < 4k:
> "EVENT="10262 trace name context forever, level 4096" # ignore leaks <
> 4K "
>
> The question is why do I have a memory leak? Is there someone who can
> point me in the right direction?
>
> Cheers,
> Clueless
Received on Mon Sep 16 2002 - 14:42:33 CDT
![]() |
![]() |