Re: psql command line question..

From: "Williams, Travis L, NPONS" <tlw(at)att(dot)com>
To: "Jean-Luc Lachance" <jllachan(at)nsd(dot)ca>, "Christoph Dalitz" <christoph(dot)dalitz(at)hs-niederrhein(dot)de>
Cc: <pgsql-general(at)postgresql(dot)org>
Subject: Re: psql command line question..
Date: 2003-01-29 22:18:29
Message-ID: AB815D267EC31A4693CC24D234F8291603799AED@ACCLUST02EVS1.ugd.att.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

I found the problem.. I was searching through the archive because what I
am doing is getting a bcp dump from a SQL server. It was full of nulls
and that was the problem.. I noticed if I VI'd the file then resaved it
everything was okay.. so basically I added the -k option for bcp and am
now doing a tr '\000' ' ' (well basically that.. as I'm doing it in
perl).. and everything is OK.. Thanks for the help though..

Travis

-----Original Message-----
From: Jean-Luc Lachance [mailto:jllachan(at)nsd(dot)ca]
Sent: Wednesday, January 29, 2003 11:01 AM
To: Christoph Dalitz
Cc: Williams, Travis L, NPONS; pgsql-general(at)postgresql(dot)org
Subject: Re: [GENERAL] psql command line question..

Well, I am always amazed by the detour people will take...
Try:

tr '\011' ' '

Use tr for all character based translation.

By the way the TAB character is CTRL-I or x09 or 011 (octal) not x0B.

Christoph Dalitz wrote:
>
> > Date: Tue, 28 Jan 2003 23:53:49 -0500
> > From: "Williams, Travis L, NPONS" <tlw(at)att(dot)com>
> >
> > I have a bunch of huge inserts in a flat file.
> > They are in proper sql context and I can take each individual and
copy/paste
> > it into psql and it inserts fine. I tried doing a psql -e dbname <
file.sql
> > and I get errors. Is there anything specific I need to do to the
file format?
> >
> I have observed very strange behaviour with psql when the input data
contains
> TAB characters. Maybe that's your problem too.
>
> Replacing nonprintable characters with blanks is somewhat tricky, but
possible
> with sed:
>
> # 0B is the hex code for TAB
> char2replace="`echo -e \x0B`"
> sed "s/$char2replace/ /g" ...
>
> Hope this helps,
>
> Christoph Dalitz
>
> ---------------------------(end of
broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/users-lounge/docs/faq.html

Browse pgsql-general by date

  From Date Subject
Next Message Michael Calabrese 2003-01-29 22:19:51 Re: Error when accessing tables with deleted columns
Previous Message Tony Grant 2003-01-29 22:13:59 Re: Firewalls and Postgres