From: | Thomas Kellerer <spam_eater(at)gmx(dot)net> |
---|---|
To: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: Specifying column level collations |
Date: | 2011-05-07 20:12:35 |
Message-ID: | iq493a$5ds$1@dough.gmane.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Tom Lane wrote on 07.05.2011 18:48:
> Thomas Kellerer<spam_eater(at)gmx(dot)net> writes:
>> My database is initialized as follows:
>
>> postgres=# select version();
>> version
>> ----------------------------------------------------------------
>> PostgreSQL 9.1beta1, compiled by Visual C++ build 1500, 32-bit
>> (1 row)
>
> I gather this is on Windows.
>
> Windows has its own notion of locale names, which look like this:
>
>> lc_collate | German_Germany.1252
>
> rather than the "de_DE" type of convention that's used by every other
> platform on the planet. There is not yet support in initdb for
> pre-populating pg_collation with Windows-style entries, so you will
> have to create your own entries. Presumably this would work for you,
> for instance:
>
> CREATE COLLATION german (locale='German_Germany.1252');
>
Ah! That did it. Thanks a lot.
Regards
Thomas
From | Date | Subject | |
---|---|---|---|
Next Message | Seb | 2011-05-07 22:33:11 | Re: slightly OT - Using psql from Emacs with sql.el |
Previous Message | Tom Lane | 2011-05-07 16:48:52 | Re: Specifying column level collations |