Re: Case insensitive search without additional rules?
Posted by: Rick James
Date: August 13, 2009 05:56AM

A technique that works in some cases...
Create an extra column (let's call it lcol) with LOWER(col) and index that (instead of the real col). Then, you can use that index via
WHERE lcol = LOWER(other_thing)

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Case insensitive search without additional rules?
2373
August 13, 2009 05:56AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.