PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Risultato dell'esportazione di PostgreSQL come CSV dal server remoto

Hai provato questo? Non ho psql in questo momento per testarlo.

echo “COPY (SELECT * from schema.products) TO STDOUT with CSV HEADER” | psql -o '/home/localfolder/products.csv'

Dettagli:

-o filename   Put  all  output into file filename.  The path must be writable by the client.
echo builtin + piping (|) pass command to psql