David Zonsheine wrote:
did you try to set the property derby.language.logQueryPlan=true in your derby.properties file or you can also set it as a java property -Dderby.language.logQueryPlan=trueWe tried to see the index usage but couldn't.
This property when set will print the query plans in derby.log
If an index is used, you will be able to see IndexScan ResultSet....
an example : here my tablename is SCANFIXED and index is SCANFIXEDX...
[snip]
Index Scan ResultSet for SCANFIXED using index SCANFIXEDX at read committed isolation level using instantaneous share row locking chosen by the optimizer
[snip]
Sunitha.
