Re: Outputting select into file.

From: Dado Feigenblatt <dado(at)wildbrain(dot)com>
To: Troy(dot)Campano(at)libertymutual(dot)com
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Outputting select into file.
Date: 2001-12-19 18:21:58
Message-ID: 3C20DAC6.2080101@wildbrain.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Lee Kindness wrote:

>Troy(dot)Campano(at)LibertyMutual(dot)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.
>
>---------------------------(end of broadcast)---------------------------
>TIP 4: Don't 'kill -9' the postmaster
>
>
or
psql -c "SELECT * from ...." | command
psql -c "SELECT * from ...." > file
psql -c "SELECT * from ...." >> file

You might want to
echo password | psql -c "query..." > file
but I rather type it when prompted
I used that once in a script, but then the password was clear to anyone
who had access to the script.
But there are ways to fix it if that's what you want.

--
Dado Feigenblatt Wild Brain, Inc.
Technical Director (415) 216-2053
dado(at)wildbrain(dot)com San Francisco, CA.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2001-12-19 18:44:37 Re: Query hangs when getting too complex...
Previous Message Bruce Momjian 2001-12-19 18:18:56 Re: Can't use subselect in check constraint