We are setting up a new SQL database (2022) for the UN (Portal 11.5 / Pro 3.5) and I would like some help picking the new collation. My research is suggesting sql_latin1_general_cp1_ci_as, but I also see some post suggesting it is a legacy collation and that modern apps should use a Unicode-compliant collation.
We only have to support the English language.
I've been UTF-8 compliant on my databases for 22+ years now. There really is no reason to go out of your way to make international names like "Côte d'Ivoire" give your front-end developers nightmares.
- V
Okay, so you think we are fine with sql_latin1_general_cp1_ci_as. I think that is the answer I want to hear -- keep it simple wherever possible.
No, latin1 is NOT UTF-8, it's latin1. You need to use a UTF-8 character set.
- V
Okay, my bad. So, this Latin1_General_100_CI_AS_KS_WS?
According to Stack Exchange, you want Latin1_General_100_..._UTF8
- V