0
votes
Want to create a script that takes backup of entire database and downloads it
If linux/unix, check out "man pg_dump". It basically dumps whole databases (with all tables and table definitions), e.g. "pg_dump mydb > db.sql"
…
