Answers for "postgresql export to file"

SQL
0

postgresql export database

// Command Prompt // it may be needed to update the PATH on cmd
pg_dump -U username dbname > filename.pgsql
Posted by: Guest on February-19-2021
0

run postgresql dump to csv

copy (SELECT * FROM persons) to 'C:tmppersons_client.csv' with csv
Posted by: Guest on August-06-2020

Code answers related to "postgresql export to file"

Code answers related to "SQL"

Browse Popular Code Answers by Language