select interestrate FROM interest_acc where TO_DATE(:B2,'DD-MM-RRRR') BETWEEN TO_DATE(fromdate,'DD-MM-RRRR') and NVL(ToDate,TO_DATE(:B2,'DD-MM-RRRR')) AND conutercolumn=:B1
above this query i tune using oem they recommendation create function based index
create index fbi_frdt on interest_acc(to_date(fromdate,'DD-MM-RRRR'))
create index fbi_frdt on interest_acc(to_date(ToDate,'DD-MM-RRRR'))
so i created but
my query execution not used index they used full access table.
so can anyone help?