Tagged Questions

OQL stands for "Object Query Language". It is defined by the Object Data Management Group (ODMG).

learn more… | top users | synonyms

3
votes
2answers
76 views

How do I find what an object refers to?

I'm trying to find a way to list which objects a run-time object is referring to. I know there is a way to enquire the jvm using oql but what I'd like to do is to query it from inside a program. Is ...
3
votes
1answer
489 views

OQL query to find all instances and sub-instances of a given class refered to from a session

I'm trying to use jhat/OQL to trace a memory leak in our Tomcat container. The question I want to ask is: "Show me all the instances (and sub-instances) of foo.bar.Cacheable class that are reachable ...
2
votes
1answer
266 views

how to sum @retainedHeapSize with oql in the Eclipse Memory Analyzer Tool

Have you used MAT(Memory Analyzer Tool) from eclipse. it's really cool.(1.5G heap dump file kill jhat, ibm's heap dump analyzer with OOME). MAT is alive and fast and beautiful and powerful. I wonder ...
2
votes
1answer
248 views

VisualVM OQL: how to search for primitive float values rather than actual Float instances?

I am wondering how one can search for all primitive float values that match a certain number. When doing something like: select n from java.lang.Float n where n.value == 1.00 Only the Float class ...
1
vote
1answer
57 views

Why is usage of javascript within visualvm (jhat?) oql sometimes confusing?

I am interested in knowing why visualvm OQL has a problem with the following statement: select filter(heap.objects("java.util.HashMap"), isTrue(it)); function isTrue(object) { return true; } ...
1
vote
0answers
31 views

Can I use OQL with an Oracle Text Index?

I have a database with an Oracle Text index and I would like to use an access layer with the Object Query Language (OQL). I would like to use statements as SELECT id FROM table WHERE CONTAINS(column, ...
1
vote
1answer
108 views

Trouble with OQL 'unique' function of 'jhat' in Java 1.6.0_24

this is my first posted question. I have a fairly complicated OQL query which lists static fields of classes loaded in our packages. One problem I'm seeing with running the query against 'jhat' of ...
1
vote
1answer
289 views

OQL syntax for counting objecs matching criteria

how can I count objets in Eclipse MAT using OQL syntax? This doesn't work : SELECT count(a) FROM org.hibernate.engine.EntityEntry a WHERE (toString(a.entityName)="my.pojo") (I want to count the ...
1
vote
3answers
304 views

Hierarchial SOQL Query

Does anyone know how to retrieve the hierarchical model of a account based on it's id? I tried using this query but all i got is the first set of child nodes. select a.Name,a.parentId,a.ownerid,a.id ...
1
vote
0answers
387 views

Java heap analysis with OQL/VisualVM: find path from indirect referrer to referee?

I am trying to find the first path found from an object to some indirect referree. The following code is what I came up with: var debug = []; //set referrer and target var referrerObj = ...
1
vote
1answer
164 views

How to find the oldest instances on the heap using OQL

I'm trying to identify a memory leak using visualvm. I found some candidates by comapring snapshots, but since there are too many of these, I would like to narrow the search by locating the oldest ...
1
vote
1answer
249 views

get static fields of a class in a heap dump in OQL

I have a heap dump and I'm using Eclipse MAT, though I suppose this should work through visualvm or whatever OQL client. We can select fields of all instances of a class by doing something like ...
1
vote
2answers
292 views

Filter on current date within Castor OQL

I'm running the java cocoon 2 and castor oql. I'm trying to filter my oql query by today's date, but I can't seem to figure out (or find in google) the syntax of the date. The database is mySql, but ...
0
votes
0answers
75 views

Error in WHERE…IN… clause using Telerik Open Access DataSource

I'm using an OpenAccessDataSource: <telerik:OpenAccessDataSource ID="oadsPackages" runat="server" ObjectContextProvider="NAMESPACE.VirtualOfficeContext, NAMESPACE" ...
0
votes
1answer
68 views

Find a String version of a GroovyConsole Script in a Heap Dump

I've accidentally ran a script with an infinite loop in GroovyConsole. :-\ For the sake of Murphy's Law, I haven't save my work during 3 or 4 hours. So, before killing the GroovyConsole Process, I've ...
0
votes
1answer
419 views

VisualVM OQL: find object that has (indirect) reachables/references to two object IDs?

My question is rather short and compact: If I find two objects with VisualVM, what kind of OQL query can I perform to find all objects that have (indirect) reachables or references to these two ...
0
votes
1answer
133 views

VisualVM OQL filter not working as expected

I am wondering why the following OQL query is not simply returning the maximum amount of returns: filter(heap.objects(), function(it) { return true; }); In fact, I only get 1 random object ...