Re: \d output to a file - Mailing list pgsql-novice

From Tom Lane
Subject Re: \d output to a file
Date
Msg-id 2441.1103129458@sss.pgh.pa.us
Whole thread Raw
In response to Re: \d output to a file  (Geoffrey <esoteric@3times25.net>)
Responses Re: \d output to a file
Re: [PERFORM] \d output to a file
List pgsql-novice
Geoffrey <esoteric@3times25.net> writes:
> sarlav kumar wrote:
>> I would like to write the output of the \d command on all tables in a
>> database to an output file.

> What is the OS?  On any UNIX variant you can do:
> echo '\d' | psql > outputfile

Or use \o:

regression=# \o zzz1
regression=# \d
regression=# \o
regression=# \d
             List of relations
 Schema |     Name      | Type  |  Owner
--------+---------------+-------+----------
 public | pg_ts_cfg     | table | postgres
 public | pg_ts_cfgmap  | table | postgres
 public | pg_ts_dict    | table | postgres
 public | pg_ts_parser  | table | postgres
 public | t_test        | table | postgres
 public | test_tsvector | table | postgres
(6 rows)

regression=# \q
$ cat zzz1
             List of relations
 Schema |     Name      | Type  |  Owner
--------+---------------+-------+----------
 public | pg_ts_cfg     | table | postgres
 public | pg_ts_cfgmap  | table | postgres
 public | pg_ts_dict    | table | postgres
 public | pg_ts_parser  | table | postgres
 public | t_test        | table | postgres
 public | test_tsvector | table | postgres
(6 rows)

$

            regards, tom lane

pgsql-novice by date:

Previous
From: Kretschmer Andreas
Date:
Subject: Re: [despammed] \d output to a file
Next
From: Michael Fuhr
Date:
Subject: Re: function returning a row