OQL - Find certain (sub)-members of a given object
Posted
by Pentius
on Stack Overflow
See other posts from Stack Overflow
or by Pentius
Published on 2010-04-29T09:22:10Z
Indexed on
2010/04/29
9:27 UTC
Read the original article
Hit count: 217
I'm analyzing heap dumps in a Portal App.
With the help of OQL I found the MemorySessionData
Object with its address.
Now I want to find all SerializableViewState
Objects, that are hold by Objects hold by this MemorySessionData
object.
In other words: My MemorySessionData
Object holds several objects, these hold objects again and so on... I want to find all SerializableViewState
Objects in this tree.
How would the OQL look like? :-/
© Stack Overflow or respective owner