views:

22

answers:

1

Google failed to give a definiative answer. So here goes Mr Stackoverflow...

Which charsets does varchar support in MSSQL?

i.e. ASCIII, UTF-8 etc...

A: 

In the varchar data type characters are stored as eight bit values, and the character set is determined by the collation that you choose for the field (or default for the database).

For example, the collation Latin1_General_CS_AS uses the Latin1 character set, and sorting and comparing is case sensetive and accent sensetive.

Guffa
I've just opted for the default MSSQL collation
Harry