Backup and restore postgresql database
1 2 3 4 | <h2>backup postgresql</h2>
pg_dump -U user-name -d source_db -f dumpfilename.psql
<h2>restore postgresql</h2>
psql -U user-name -d desintation_db -f dumpfilename.sql
|
Backup and restore postgresql database
1 2 3 4 | <h2>backup postgresql</h2>
pg_dump -U user-name -d source_db -f dumpfilename.psql
<h2>restore postgresql</h2>
psql -U user-name -d desintation_db -f dumpfilename.sql
|