vote up 0 vote down star

Hi,

I'm having a table (an existing table with data in it) and that table has a column UserName. I want this UserName to be unique. So I add a constraint like this:

ALTER TABLE Users 
ADD CONSTRAINT [IX_UniqueUserUserName] UNIQUE NONCLUSTERED ([UserName])

Now I keep getting the Error that duplicate users exist in this table. But I have checked the database using the following query:

SELECT COUNT(UserId) as NumberOfUsers, UserName 
FROM Users 
GROUP BY UserName, UserId 
ORDER BY UserName

This results in a list of users all having 1 as a NumberOfUsers. So no duplicates there. But when I'm checking the username he fails I see the following result:

beluga
béluga

So apperently he fails to compare an "e" and "é" or "è" ... It's like he ignores these, is there any way that sql doesn't ignore these accents when adding the unique key contraint.

Kind Regards,

Sem

SOLUTION:

THX to you guys I've found the solution. This fixed the problem:

ALTER TABLE Users 
ALTER COLUMN UserName nvarchar(250) COLLATE SQL_Latin1_General_CP1_CI_AS
flag

This seems to be a problem with the database collation. What collation is it set to? – Lars Mæhlum Mar 4 at 8:20

5 Answers

vote up 3 vote down check

The collation you are using most likely ignores case and accents when comparing. You'll need to change the collation.

  • Latin1_General_CI_AI Ignores case and accents
  • Latin1_General_CI_AS will not ignore accents

List of SQL server collation names here.

link|flag
Ok, can you tell me the collation name? – Sem Dendoncker Mar 4 at 8:23
yip this is it. this did the trick thx mate. – Sem Dendoncker Mar 4 at 8:28
But the correct query would have shown you that problem :D – Jonathan Leffler Mar 4 at 8:29
Indeed ... feeling kinda stupid now :). – Sem Dendoncker Mar 4 at 8:33
vote up 1 vote down

As Andrew Barrett says, the default collation in MySQL doesn not recognize accents correctly.

Change the collation of your fields to UTF8_unicode_ci and it should see accents properly.

ci means case insensitive, and you can use a different collation if case is important.

You can create a new table with the new collation, then copy * from the existing table into the new one.

link|flag
vote up 2 vote down

Your query groups by UserID too - you don't want to be doing that.

Use:

SELECT COUNT(*) as NumberOfUsers, UserName 
    FROM Users 
    GROUP BY UserName 
    ORDER BY UserName

Your query would only show up users with the same name and same user ID. Or, maybe, order the data by COUNT(*) so the last row that shows up is most likely the troublemaker?

You could also have problems with collation as others have suggested, but normally, GROUP BY would be self-consistent.

link|flag
vote up 2 vote down

Presumably UserId is your primary key. Since it's part of what you are grouping by, you are guaranteed to get a single row per group. Take the "userId" column out of your group by.

link|flag
indeed thx. srry 'bout that – Sem Dendoncker Mar 4 at 8:30
vote up 0 vote down

Also note that you can also create just the table you are interested in the relevent collation (instead of server wide) .So you could also do something like :

CREATE TABLE Users (c1 varchar (10), .., COLLATE Latin1_General_CI_AS NULL )
link|flag

Your Answer

Get an OpenID
or

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