I am working with a number of sql server 2012 databases that contain data from different languages. I have been reading up on such and have found getting the collations for the sql server databases correct is something that needs careful consideration. I am not familliar with such and could really do with some assistance. Let me outline, what languages are in which database:
- Database 1 – Russian data
- Database 2 – Polish and English data
- Database 3 – Kyrgyz and Russian data
How do I go about deciding on the collations are for each database? Is there a guide I can follow or any tips on this?
Thanks.
See here for a guide (not yet a version for SQL 2012, but it should be the same):
Also, regardless of collation I’d recommend always using
NVARCHAR/NCHARcolumns overVARCHAR/CHAR. (I would sayNTEXTtoo, but that’s deprecated anyway in 2008 and upwards).NB: I’m not 100% on Polish and English where things like sorting data alphabetically are concerned; the others I’m pretty confident on though.