Re: Dump and Query - Mailing list pgsql-admin

From Andy Shellam (Mailing Lists)
Subject Re: Dump and Query
Date
Msg-id 459263C1.2040401@mailnetwork.co.uk
Whole thread Raw
In response to Dump and Query  (Enrico <scotty@linuxtime.it>)
Responses Re: Dump and Query  (Bricklen Anderson <banderson@presinet.com>)
List pgsql-admin
Hi Enrico,

The following command will get you a text file of your result-set:

# echo "SELECT customer_id, first_name, sur_name FROM
users;"|/usr/local/pgsql/bin/psql -U [username] -d [database] > myfile.txt
# cat myfile.txt

 customer_id | first_name | sur_name
-------------+------------+----------
 CUS0000002  | Andy       | Shellam


Or you can dump a specific table:

# /usr/local/pgsql/bin/pg_dump --table=[tablename] [database]

Regards,

Andy.

Enrico wrote:
> Is there any way to make a dump from a query?
>
> For example if my query is:
>
> select field1,field2 from table
>
> Does it exist a shell command like pg_dump --QUERY myquery -f myfile?
>
> Have a nice day
> Enrico
>
>


--
Andy Shellam
NetServe Support Team

the Mail Network
"an alternative in a standardised world"

p: +44 (0) 121 288 0832/0839
m: +44 (0) 7818 000834


pgsql-admin by date:

Previous
From: Enrico
Date:
Subject: Dump and Query
Next
From: "Shoaib Mir"
Date:
Subject: Re: Dump and Query