vote up 3 vote down star

Specifically, Sql Server 2005/T-Sql. I have a field that is mostly a series of two characters, and they're all supposed to be upper case but there's some legacy data that predates the current DB/System, and I need to figure out which records are in violation of the upper casing covenant.

I thought this would work:

select * from tbl where ascii(field1) <> ascii(upper(field1))

And indeed it returned me a handful of records. They've since been corrected, and now that query returns no data. But I've got people telling me there is still mixed case data in the DB, and I just found an example: 'FS' and 'Fs' are both reporting the same ascii value.

Why is this approach flawed? What is a better way to go about this, or how can I fix this approach to work correctly?

flag

80% accept rate

7 Answers

vote up 5 vote down check

if all the date should have been in upper case just do an update

update tbl
set field1 = upper(field1)

but to answer your original question this query should give you the results that you expect:

select * from tbl
where field1 COLLATE Latin1_General_CS_AS <> upper(field1)

Edit: just noticed that the suggestion to use COLLATE was also posted by Ian

link|flag
I agree, that's a better approach and I didn't consider it. – peacedog Feb 4 at 13:53
Thanks for the hat tip ... :) – Ian Varley Feb 4 at 15:43
vote up 0 vote down

According to the documentation for ASCII(), it only returns the leftmost character.

I think you're going about this wrong. You could simply:

select * from tbl where field1 <> upper(field1)

if the collation rules were set correctly, so why not fix the collation rules? If you can't change them permanently, try:

select * from tbl where
          (field1 collate Latin1_General_CS_AS)
  <> upper(field1 collate Latin1_General_CS_AS)
link|flag
vote up 1 vote down

The methods described at Case sensitive search in SQL Server queries might be useful to you.

link|flag
Very much so, thanks! – peacedog Feb 4 at 14:00
vote up 1 vote down

This might work:

select * from tbl 
where cast(field1 as varbinary(256)) <> cast(upper(field1) as varbinary(256))
link|flag
That does work as it turns out. Nice. – peacedog Feb 4 at 13:52
vote up 3 vote down

ASCII is only comparing the first letter. You'd have to compare each letter, or change the database collation to be case sensitive.

You can change collation on an entire database level, or just on one column for a specific query, so:

SELECT myColumn 
  FROM myTable  
  WHERE myColumn COLLATE Latin1_General_CS_AS <> upper(myColumn)
link|flag
+1 I think that answers the original question – kristof Feb 4 at 13:55
vote up 1 vote down

The ASCII() function returns only the ASCII code value of the leftmost character of a character expression. Use UPPER() instead.

link|flag
vote up 2 vote down

The ascii() function will only return the ascii number for the first character in an expression if you pass it a multiple character string. To do the comparison you want you need to look at individual characters, not entire fields.

link|flag
beat me to it :) – Allain Lalonde Feb 4 at 13:40
Gah, I misread the Ascii help. Thanks. – peacedog Feb 4 at 13:42
np, but I think @tehvan has a good point that you could omit the usage of ASCII completely. – cmsjr Feb 4 at 13:43
I need to find the specific records that are wrong so I can report back which ones are changed. – peacedog Feb 4 at 13:46
You can also use COLLATE Latin1_General_CS_AS in the query to force case sensitivity for just that one column in that one query. – Ian Varley Feb 4 at 13:47

Your Answer

Get an OpenID
or

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