Subject Re: Case Sensitivity on Indices
Author darryl_caillouet <darryl.caillouet@allte
I tried to research this problem earlier but could find no good
solution for doing case-insensitive searching using Firebird on a
Linux box. This is possible on Windows machines because as noted in
the other posts, a case-insensitive collation has been developed for
that platform. If you want to accomplish this on a Linux box, you're
left with two options:

1. Lose indexing, sorting and do table scans.
2. Duplicate data and cast it to uppercase so you can index it.
Anytime you want to index alpha-numeric fields, you have to add
additional fields to your table to hold upper case copies of the
indexed fields.

Here's a link about the problem on Borland's website:
http://bdn.borland.com/article/0,1410,25171,00.html

Being familiar with MSSQL and MySQL, I was surprised (stunned) to find
out that Firebird did not have the capability to do case-insensitive
searching using an index. From what I can see, if you want
case-insensitivity on a Linux box you have to choose between giving up
performance or writing very unportable client / database code. I keep
hoping someone will tell me I'm wrong because I'm impressed by
Firebird's other features.

Darryl

--- In ib-support@yahoogroups.com, "Kumar" <manuelf001@h...> wrote:
> Aloha Again... Thanks so much for the advice given so far. I've
downloaded more manuals than I've time to read, but am making a lot of
progress on identifying the conversion (DBISAM -> FB) issues.
>
> In DBISAM, there is the ability to indicate that an index is not
case sensitive. Thus, "Abc" would be right next to "ABC" rather than
far apart in the index, the thus (I believe) optimize a query on the
field.
>
> I can't seem to find such an animal in FB. Would something this work:?
>
> Select * from Clients where Upper(Clients.Name) like 'SMITH%'
>
> TIA,
> -k-
>
>
>
>
>
> [Non-text portions of this message have been removed]