Postgres 9.2 on Windows 7, I'm trying to create English_United States.1252 custom collation:
user=# create database test template template0 ENCODING = 'utf8' LC_COLLATE = 'English_United States.1252' LC_CTYPE = 'English_United States.1252';
CREATE DATABASE
user=# \c test
test=# create collation english from "English_United States.1252";
ERROR: collation "English_United States.1252" for encoding "UTF8" does not exist
And as you see, the following error is displayed: ERROR: collation "English_United States.1252" for encoding "UTF8" does not exist
What's the proper way to create English United States collation on Windows for utf8 db encoding?