Re: [GENERAL] Controlling psql output

2009-05-11 Thread Jasen Betts
On 2009-05-08, Gauthier, Dave dave.gauth...@intel.com wrote: --_000_482E80323A35A54498B8B70FF2B87980040106E94Bazsmsx504amrc_ Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Hi: Using a single psql command to generate stdout in linux that will be

[GENERAL] Controlling psql output

2009-05-08 Thread Gauthier, Dave
Hi: Using a single psql command to generate stdout in linux that will be redirected to a file. Many rows with 1 column are returned. I want no header, no footer, no blank lines at the top or bottom, no initial space before each record. This is what I'm trying... psql -P

Re: [GENERAL] Controlling psql output

2009-05-08 Thread Joshua D. Drake
On Fri, 2009-05-08 at 09:51 -0700, Gauthier, Dave wrote: Hi: Using a single psql command to generate stdout in linux that will be redirected to a file. Many rows with 1 column are returned. I want no header, no footer, no blank lines at the top or bottom, no initial space before each

Re: [GENERAL] Controlling psql output

2009-05-08 Thread Christophe
On May 8, 2009, at 9:51 AM, Gauthier, Dave wrote: This gets rid of the header and footer OK. But there is still a blank line as the first line in stdout. Also, each record has a preceding space before the column value. Is there a way to do what I want? sed?

Re: [GENERAL] Controlling psql output

2009-05-08 Thread Ben Chobot
On Fri, 8 May 2009, Gauthier, Dave wrote: Hi: Using a single psql command to generate stdout in linux that will be redirected to a file. Many rows with 1 column are returned. I want no header, no footer, no blank lines at the top or bottom, no initial space before each record. This is

Re: [GENERAL] Controlling psql output

2009-05-08 Thread Gauthier, Dave
-A -t worked great. Thanks ! -dave -Original Message- From: Ben Chobot [mailto:be...@silentmedia.com] Sent: Friday, May 08, 2009 2:03 PM To: Gauthier, Dave Cc: pgsql-general@postgresql.org Subject: Re: [GENERAL] Controlling psql output On Fri, 8 May 2009, Gauthier, Dave wrote: Hi