AFAIK, using a function in an indexed column will not allow the optimizer to use this index. The easiest way is to rewrite the operator to:
select * from _table where _field like '[bB][uU][sS][yY]'
this should allow the optimizer to use the index.
source share