OQL stands for "Object Query Language". It is defined by the Object Data Management Group (ODMG).
6
votes
2answers
102 views
Analyzing heap dum, Map#size() is not a function?
Getting this weird error:
javax.script.ScriptException: sun.org.mozilla.javascript.internal.EcmaError: TypeError: size is not a function, it is null. (#1)
While analyzing a heap dump and running ...
3
votes
2answers
170 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
935 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
355 views
string search using OQL
I am using VisualVM to analyze a core dump. I suspect some XML objects to be causing the leak but there are way too many String objects to go through one by one.
Can I use OQL to search String that ...
2
votes
1answer
297 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;
}
...
2
votes
1answer
515 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 ...
2
votes
2answers
558 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
...
2
votes
0answers
64 views
Is there a Linq to OQL provider?
I want to convert Linq query to OQL.
Is there a Linq to OQL provider?
2
votes
1answer
987 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
3answers
1k 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
1answer
315 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
2answers
383 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 ...
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
1answer
201 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
838 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 ...
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
1answer
1k 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
65 views
in OQL, or JQL, how do you do this type of outerjoin
Say we have two completely unrelated entities EntityX and EntityY both with column age. How do I in OQL do a join like so
select x,y from EntityX as x full outer join EntityY as y on x.age = y.age
...
0
votes
2answers
214 views
OQL all instances from a package
Is it possible in OQL to retrieve all the objects that belongs to a package? Or can I query with wildcards?
As @haridsv suggested I tried:
SELECT * from "com.example.*"
and
SELECT a from ...
0
votes
1answer
188 views
Sorting OQL result set by object parameter in VisualVm
Have opened a Java heap dump in VisualVm and I'm trying to formulate an OQL query to return all objects of a specific class (se.greger.sven.olof.node.Task) ordered by one of the objects parameters ...
0
votes
1answer
142 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
0answers
18 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
1answer
85 views
in VisualVM/OQL how can I get the total size of all instances of objects from a certain package
I'm using VisualVm to profile a Web Application running in Tomcat. Tomcat keeps crashing with out of memory errors so I'm trying to figure out what in my application is causing it.
When I run the ...
0
votes
0answers
44 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
1answer
38 views
sort and limit castor query
I am attempting to return a single object via castor query that has the earliest date.
This is the sort of thing I have been trying:
SELECT p FROM model.objects.Product p LIMIT $1 WHERE p.status=$2 ...
0
votes
0answers
94 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
1answer
162 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 ...
0
votes
0answers
176 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 ...
0
votes
2answers
253 views
How to use “AND operator (&&)” in OQL in MAT Eclipse
I am working on performance tuning of a java rmi application and
using OQL to execute below query :
select tpoint.host.value.toString() from sun.rmi.transport.tcp.TCPEndpoint tpoint
where ...
0
votes
1answer
259 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 ...