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

learn more… | top users | synonyms

2
votes
1answer
999 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 ...
1
vote
1answer
845 views

OQL syntax for counting objects matching criteria

how can I count objects 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 ...
0
votes
1answer
164 views

Object Query Language referrers

I'm trying to analyze a heap dump to determine if my hibernate cache settings are the cause. Many instances of the object in question are referred to by ...
2
votes
0answers
67 views

Is there a Linq to OQL provider?

I want to convert Linq query to OQL. Is there a Linq to OQL provider?
1
vote
0answers
80 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
0answers
660 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 = ...
0
votes
0answers
19 views

OQL at runtime?

I've just learnt that OQL exists to analyse heap dumps in Java. I know that HQL can be used to query a relational database in a OQL fashion and JXPath is usefult to crawl object trees. None of these ...
0
votes
0answers
46 views

Convert Linq query to Object Query Language

I want to convert Linq query to OQL. Is there anything already built? If so can I reuse it?
0
votes
0answers
96 views

eclipse mat oql

How can I with Eclipse MAT using OQL fetch all objects of the specific class that has specific incoming links? For example I have a set of java.lang.String objects some of them are referenced from ...
0
votes
0answers
177 views

How to do embedded query using OQL in MAT Eclipse

I can get all Thread objects by using query as below SELECT OBJECTS dominators(s) FROM java.lang.Thread s then if I want to do further analysis of the returned result objects, the OQL I think ...