vote up 3 vote down star

Hello,

I have a table, users, in an Oracle 9.2.0.6 database. Two of the fields are varchar - last_name and first_name.

When rows are inserted into this table, the first name and last name fields are supposed to be in all upper case, but somehow some values in these two fields are mixed case.

I want to run a query that will show me all of the rows in the table that have first or last names with lowercase characters in it.

I searched the net and found REGEXP_LIKE, but that must be for newer versions of oracle - it doesn't seem to work for me.

Another thing I tried was to translate "abcde...z" to "$$$$$...$" and then search for a '$' in my field, but there has to be a better way?

Thanks in advance!

flag

2 Answers

vote up 15 vote down check

How about this:

select id, first, last from mytable
where first != upper(first) or last != upper(last);
link|flag
vote up 1 vote down

I think BQ's SQL and Justin's second SQL will work, because in this scenario:

first_name        last_name
----------        ---------
bob               johnson
Bob               Johnson
BOB               JOHNSON

I want my query to return the first 2 rows.

I just want to make sure that this will be an efficient query though - my table has 500 million rows in it.

When you say upper(first_name) != first_name, is "first_name" always pertaining to the current row that oracle is looking at? I was afraid to use this method at first because I was afraid I would end up joining this table to itself, but they way you both wrote the SQL it appears that the equality check is only operating on a row-by-row basis, which would work for me.

link|flag
The condition is applied on a row by row basis. Of course, your query is going to have to do a full table scan of a 500 million row table in order to process the query, which is going to be slow. If this is a regular occurrence, a function-based index might be helpful. – Justin Cave Nov 25 '08 at 15:15
Nice point, Justin. I was just going to add the function-based index suggestion as well. Also, if the data is really supposed to be uppercase, you can create a trigger to force this on inserts. – BQ Nov 25 '08 at 15:21
Brian, not sure what you're planning to do entirely, but do note that you can also run "update mytable set first_name=upper(first_name) and last_name=upper(last_name);" to normalize all your data... you don't need to fetch it row by row and update it outside the database. – BQ Nov 25 '08 at 15:31
Thanks! These two columns are indexed, so queries are pretty quick against them, but I'll have to investigate a functional index as well. It won't be regular occurrence, I just need it for analysis until we fix it. – BrianH Nov 25 '08 at 15:57
With a normal index, queries should only be quick if they're performed against the specific casing stored in the index. See my comment at stackoverflow.com/questions/291166/… for more on the functional index. – BQ Nov 25 '08 at 16:10
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.