Re: how to redirect output to a file

From: "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: how to redirect output to a file
Date: 2007-12-06 13:22:43
Message-ID: 20071206132243.GB15524@a-kretschmer.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

am Tue, dem 04.12.2007, um 20:19:29 -0800 mailte pc folgendes:
> Hi,
>
> How to redirect the output of an sql command to a file?
> Thanks in advance

within psql you can use \o <filename>, from the shell you can use this:

kretschmer(at)pegasus:~$ echo "select now()" | psql test > now.txt
kretschmer(at)pegasus:~$ cat now.txt
now
-------------------------------
2007-12-06 14:21:58.963405+01
(1 row)

Regards, Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message A. Kretschmer 2007-12-06 13:25:06 Re: Error in creating function
Previous Message Usama Dar 2007-12-06 13:19:55 Re: how to redirect output to a file