Re: [SQL] DataStyle

From: José Soares <jose(at)sferacarta(dot)com>
To: Remigiusz Sokolowski <rems(at)gdansk(dot)sprint(dot)pl>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: [SQL] DataStyle
Date: 1999-06-10 12:13:48
Message-ID: 375FABFC.24F4D505@sferacarta.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


Remigiusz Sokolowski ha scritto:

> Hi!
> I did something like that:
> torell=> set DataStyle to 'ISO';
>
> and get something like this:
> NOTICE: Unrecognized variable datastyle
> SET VARIABLE
>
> I try also with 'European' DataStyle - I remeber, that sometime ago this
> command functions OK, and we've made no changes in configuration of
> database.
>

hygea=> set DateStyle to 'ISO';
SET VARIABLE

>
> So my question is:
> If there is a way to set DataStyle manually?
> And if it is possible to set it default 'European' to all users?
> As I saw it seems, that every user has its own settings of this.
> TIA
> Rem
>

You can do this job in three different ways:

1. Setting PGDATESTYLE environment variable for everey client
as:
export PGDATESTYLE='sql,european' # this format is:
dd/mm/yyyy

2. Running postmaster using -oe parameter to set format
date to 'European' convention.

3. Changing the following variables:
bool EuroDates = true / false
int DateStyle =
USE_ISO_DATES
USE_POSTGRES_DATES
USE_ISO_DATES
USE_SQL_DATES
USE_GERMAN_DATES
on ~/src/backend/utils/init/globals.c file before PostgreSQL
installation).

______________________________________________________________
PostgreSQL 6.5.0 on i586-pc-linux-gnu, compiled by gcc 2.7.2.3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Jose'

In response to

  • DataStyle at 1999-06-10 09:57:10 from Remigiusz Sokolowski

Browse pgsql-sql by date

  From Date Subject
Next Message Sergey S. Rakitin 1999-06-10 12:24:39 Re: [SQL] fields with float[48] type question
Previous Message Emils Klotins 1999-06-10 11:41:17 Re: [SQL] Select like when searching for whole word and optimizing it -- regexp?