-
-
Save sebastiaojuniordev/c5769d075bd40d3002f820525dd6e2d7 to your computer and use it in GitHub Desktop.
Revisions
-
stefanthoss created this gist
Apr 29, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ psql -h hostname -U username -W -d database -t -A -F "," -c "SELECT * FROM table" > file.csv # Explanation of the used options: # -h Specifies the host name of the machine on which the server is running. # -U Connect to the database as a specific user. # -W Force psql to prompt for a password before connecting to a database. # -d Specifies the name of the database to connect to. # -t Turn off printing of column names and result row count footers, etc. # -A Switches to unaligned output mode. # -F Use separator as the field separator for unaligned output. # -c Specifies that psql is to execute one command string, command, and then exit.