Re: Tabbed data in tab-separated output

From: mike <mike(at)thegodshalls(dot)com>
To: felix(at)crowfix(dot)com
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Tabbed data in tab-separated output
Date: 2007-01-04 04:31:46
Message-ID: 1167885106.18404.7.camel@localhost.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

How are you attempting to restore the table after using psql? Psql
insert statements? Pgdump? COPY FROM?

Mike
On Wed, 2007-01-03 at 17:59 -0800, felix(at)crowfix(dot)com wrote:
> I have a table which has a few VARCHAR columns whose first character
> is a tab. If I run pg_dump on this table, it outputs data like this:
>
> 43158 \t555-1212 3
>
> where the two embedded white spaces are actually tabs.
>
> If I use psql to execute SQL to dump parts of the table, like this:
>
> psql -qtA -f '\t' -U xyzzy xyzzy -c 'select ... >/tmp/xxx
>
> I get this:
>
> 43158 310-319-1333, x1070 3
>
> where that initial embeded white space represents two tabs. When I
> use psql to restore this data, it thinks the 2nd column is empty and
> complains that the third column is the wrong type.
>
> pg_dump apparently is smart enough to print embedded tabs as escaped
> chars, but not psql. Is there a fix for this? I thought of reverting
> to standard output, without the -t option, and analyzing the first two
> lines to tell exactly how many spaces are assigned to each column, but
> that gives me the shudders.
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message sbaskar 2007-01-04 05:51:13 Need help in PGSQL
Previous Message mike 2007-01-04 04:27:44 Re: could not open file xxxx for writing: Permission