1.0.0 • Published 6 years ago

psqlcsv v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

psqlcsv

Small alternative to the default psql CLI. Outputs proper CSV without using the COPY command (for Amazon Redshift compatibility)

Connection details should be supplied in env vars:

$ PGUSER=dbuser \
  PGHOST=database.server.com \
  PGPASSWORD=secretpassword \
  PGDATABASE=mydb \
  PGPORT=3211 \
  psqlcsv 'SELECT id, json, messy_text FROM Data' > data.csv
1.0.0

6 years ago