When I met the same problem 2 years ago and try to solve by
Code:
Where UCASE(LastName) = 'SMITH'
it was created the big performance issue.
After this I found the solution without any performance affect:
Code:
Where (LastName like 's%' or LastName like 'S%')
and Ucase(LastName) like '_MITH'
Kara