Re: How to find correct locale name for CREATE DATABASE

From: Raymond O'Donnell <rod(at)iol(dot)ie>
To: Andrus <kobruleht2(at)hot(dot)ee>
Cc: Thom Brown <thom(at)linux(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: How to find correct locale name for CREATE DATABASE
Date: 2010-12-01 12:41:36
Message-ID: 4CF64280.3010100@iol.ie
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 01/12/2010 08:26, Andrus wrote:
> Thom,
>
>> You can list available locales on your system with: locale -a
>
> Thank you.
>
> How to resolve this issue if only 5432 port is open in server ?
> Based on my limited knowledge, postgres does not have command to run
> "locale -a"
> How to get list of available locale names from Postgres ?

This is a *nix command, not a PostgreSQL one, so just enter it at the
Linux shell prompt.

> Why Postgres does not have command which returns available locale names ?

"show server_encoding;" will tell you the encoding of the database to
which you're currently connected. I'm not sure how you find out what's
available, but the docs may help:

http://www.postgresql.org/docs/9.0/static/charset.html

> How to use same locale names in every platform?

See the docs above.

Ray.

--
Raymond O'Donnell :: Galway :: Ireland
rod(at)iol(dot)ie

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Ciaran Doherty 2010-12-01 12:55:30 A question about timezone
Previous Message Andrus 2010-12-01 08:26:43 Re: How to find correct locale name for CREATE DATABASE