Outputting select into file. - Mailing list pgsql-general

From Lee Kindness
Subject Outputting select into file.
Date
Msg-id 15392.46537.511719.871128@elsick.csl.co.uk
Whole thread Raw
In response to Outputting select into file.  (Troy.Campano@LibertyMutual.com)
List pgsql-general
Troy.Campano@LibertyMutual.com writes:
 > I have postgres 7 running on RedHat Linux.
 > I was wondering if you knew of a way to run a select and output it to a
 > file.
 > SELECT * FROM TABLE >> test.out
 > So that test.out would have the results from that SQL Statement.

Either:

 SELECT * FROM table \g filename

to just output to the file 'filename', or:

 select * from lineshoot \g |cat >> /solsolute/path/filename

to append to the file. Both in psql, or:

 echo 'SELECT * FROM table' | psql database >> test.out

from your terminal.

Regards, Lee Kindness.

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Query hangs when getting too complex...
Next
From: "Greg Sabino Mullane"
Date:
Subject: Re: Way to use count() and LIMIT?