Hi,
ENV: .Net 1.1, VS 2003, Windows Server 2003 SP1
We are seeing some issues with the Gen 2 heap unexpectledly increasing over
a lengthy period in an ASP.Net application. To troubleshoot this we've been
using the 1.1 CLR profiler, this shows allocations, but I am unable to find
out which objects are being retained in Gen 2. How can I do this?
Many thanks,
Stuart
Mattias Sjögren - 04 Apr 2006 16:32 GMT
>How can I do this?
I think you can do it with the Sos.dll debugger extensions.
Mattias

Signature
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Jim Cheshire - 04 Apr 2006 19:02 GMT
>>How can I do this?
>
>I think you can do it with the Sos.dll debugger extensions.
Yes, you can. You can run the following command in SOS to get that
info:
!dumpheap -gen 2 -stat
Jim
Stu Carter - 05 Apr 2006 12:57 GMT
Cheers all!
>>>How can I do this?
>>
[quoted text clipped - 6 lines]
>
> Jim