How do you force the query in your function (component) to use the Index
created. If you have some thing like this
select *
from class
and a bunch of where clauses.
In Oracle you you can provide a hint. Does CF allow for this in the CFC's
queries? any example?
Kabuto2 - 28 Jul 2006 18:32 GMT
First it should automatically select the index. I would run it through query analyzer and see the exectution path. If you want to force and index..
select * from class with INDEX(index1,index2..)