Re:

From: Scott Marlowe <smarlowe(at)g2switchworks(dot)com>
To: Zuoxin(dot)Wang(at)kp(dot)org
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re:
Date: 2005-04-19 20:48:01
Message-ID: 1113943681.20921.562.camel@state.g2switchworks.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

It looks like you have some non-printing characters (like ansi
positioning characters or something) in your data.

On Tue, 2005-04-19 at 15:27, Zuoxin(dot)Wang(at)kp(dot)org wrote:
> Hi all,
> Does any one know why I have following inconsistant results from
> PostgreSQL?
> Thanks in advance.
>
> test=# select birthday from patient;
> birthday
> ------------
> 1960-02-01
> 1960-02-01
> (2 rows)
>
> test=# select used from patient;
> used
> ------
> N
> N
> (2 rows)
>
>
> test=# select first_name, last_name, used, birthday from patient;
> first_name | last_name | used | birthday
> ------------+-----------+------+------------
> | 1960-02-01DI | N
> | 1960-02-01DI | N
> (2 rows)
>
> test=# select first_name, last_name, birthday, used from patient;
> first_name | last_name | birthday | used
> ------------+-----------+------------+------
> AAAAAA | TDI | 1960-02-01 | N
> AAAAAB | TDI | 1960-02-01 | N
> (2 rows)
>
> test=#
>
> Jason

In response to

  • at 2005-04-19 20:27:09 from Zuoxin.Wang

Browse pgsql-admin by date

  From Date Subject
Next Message Wim Bertels 2005-04-19 20:54:32 Re: brute force attacking the password
Previous Message Alvaro Herrera 2005-04-19 20:46:14 Re: