Answers for "backup postgres"

SQL
3

postgresql restore from dump

psql -U postgres -h localhost -p 5432 -f data_dump.sql
Posted by: Guest on May-01-2020
1

backup postgres database

pg_dump -h localhost -U postgres -W -d mydb > mydb.sql
Posted by: Guest on July-07-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language