Re: ps_dump -a

From: "Johnson, Shaunn" <SJohnson6(at)bcbsm(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: ps_dump -a
Date: 2002-10-29 20:59:18
Message-ID: 73309C2FDD95D11192E60008C7B1D5BB04C74137@snt452.corp.bcbsm.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

--thanks for the reply:

--that could work, i'll give it a try now ...

--but now ... am i not clear as to what the '-a' is suppose
--to provide? shouldn't there be a text file with
--just data or is this a bug of some sort?

--thanks again!

-X

-----Original Message-----
From: Andrew Sullivan [mailto:andrew(at)libertyrms(dot)info]

On Tue, Oct 29, 2002 at 10:24:48AM -0500, Johnson, Shaunn wrote:
> Running PostgreSQL 7.2.1 on RedHat Linux 7.2:
>
> I'm trying to do a "pg_dump -a -t t_table -d testdb > out.txt"
> and I'm still getting header information. How can I do
> a dump of data to a text file and not get information like
> the comments, Date for TOC Entry, Name, etc ... I just
> want the raw data. I've tried to pipe it through using
> tail, but I don't know if I'm missing the beginning of the
> file.

What about

pg_dump -a -t t_table -d testdb | grep -v "^--" > out.txt

? The grep will get rid of any line that begins with "-", which will
be a comment line.

A

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2002-10-29 22:14:26 Re: command-line history (readline) fails
Previous Message Andrew Sullivan 2002-10-29 20:55:08 Re: ps_dump -a