PostgreSQL Backup & Restore PostgreSQL database 2013-07-02 Tomislav Vlahović Leave a comment Backup pg_dump -U {user-name} {source_db} -f {dumpfilename.sql} Restore psql -U {user-name} -d {desintation_db} -f {dumpfilename.sql}