PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Résultat d'exportation PostgreSQL au format CSV à partir d'un serveur distant

Avez-vous essayé cela? Je n'ai pas psql pour le moment pour le tester.

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

Détails :

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