T.R | Title | User | Personal Name | Date | Lines |
---|
1287.1 | A better conference for this question ?? | ORAREP::FUTURS::MARSHALL1 | | Thu Feb 20 1997 10:35 | 18 |
|
Anyone have any answers to this, or a pointer to a conference where
this question would be better asked ??
As predicted, the users now want to do a case-insensitive query
against their RMS files, and I don't believe it can be done.
SELECT * FROM tblMyTable WHERE strField LIKE 'aaa*'
to match all of:
strField = 'aaab'
= 'Aaab'
= 'aAab' and so on.
Steve
|
1287.2 | ignore case? | BROKE::ABUGOV | | Thu Feb 20 1997 15:33 | 13 |
|
Hi Steve,
There probably is a better conference, but I don't know which one it
would be. I think if you add
IGNORE CASE
to the end of the statement it should work.
Hope this helps,
Dan
|
1287.3 | Upgrade Rdb and Patch - Fixed | ORAREP::FUTURS::MARSHALL1 | | Fri Feb 21 1997 06:44 | 18 |
|
Hi folks,
the machine I was testing against was well out of date with the
version of Rdb. It has now been upgraded and had a number of
patches installed, which seems to have fixed the problem.
Using:
UCASE(<fieldname>) LIKE '<string>*'
now works fine ....
Cheers,
Steve.
|