| Author |
Using "FORCE INDEX" clause in HQL
|
Renato Veneroso
Greenhorn
Joined: Mar 18, 2004
Posts: 12
|
|
Hello people, Does anybody know whether is possible to include the "FORCE INDEX" clause in an HQL sentence? Due to what seems to be a MySQL bug the best index of a table has not been used and this is causing performance loss. The problem can be fixed in pure SQL using the clause "FORCE INDEX" but in HQL it cannot be used (at least not explicitly). Is there a way I can re-write my HQL so that it forces the use of specific index? Thanks in advance.
|
 |
Paul Sturrock
Bartender
Joined: Apr 14, 2004
Posts: 10336
|
|
|
You could just use a SQL query, since Hibernate supports querying with SQL. You would be making your Hibernate code platform specific if you did this though.
|
JavaRanch FAQ HowToAskQuestionsOnJavaRanch
|
 |
 |
|
|
subject: Using "FORCE INDEX" clause in HQL
|
|
|