This question "Need a case insensitive collation where ss != ß" solves it for varchar
type column, but mine has to be nvarchar
.
As far as I can gather, SQL_Latin1_General_Cp437_BIN
differentiates between ß
and ss
. But it is also case-sensitive. Mine is a primary key column which also needs to be case INsensitive:
I need e.g. weiß
/Weiß
to be considered equal, and also weiss
/Weiss
, but NOT weiß
/weiss
nor Weiß
/Weiss
nor weiß
/Weiss
etc.
I've searched a lot for this, and is it really so that I'm out of luck here? There has to be a lot of people in the same situation, I just can't believe this could be unsolvable.
The closest I can get to a workaround is using an indexed view to add a unique constraint on
UPPER(ID)
to stop primary key violation that is not picked up by the binary collation used on the actual primary key, e.g.Now the following will work as the initial insert:
But the following will fail:
This appears to match your criteria after initial testing.
EDIT
I definitely over complicated this, you can achieve the same thing with a computed column and a unique constraint: