Hi,

For any query on the tables have the indexes, can we explicitly make use of the index by saying
table.rowid = index.rowid..
For example
select a.* from table_a a, index_b b
where a.rowid = b.rowid;

badrinath