I'm looking to copy a production postgres database to a development server. What's the quickest, easiest way to go about doing this?
|
feedback
|
|
You don't need to create an itermediate file. You can do
or
Using psql or pg_dump to connect to a remote host. With a big database or a slow connection, dumping a file and transfering the file compressed may be faster. Edit As porneL said there is no need to dump to a intermediate file, if you want to work compressed you can do with a compressed tunnel .
or pg_dump -C dbname | ssh -C remoteuser@remotehost "psql dbname" But this solution also requires to get a session in both ends. | |||||
feedback
|
Then copy the backup to your development server, restore with:
| |||||||||
feedback
|
|
Use pg_dump, and later psql or pg_restore - depending whether you choose -Fp or -Fc options to pg_dump. Example of usage:
| |||
|
feedback
|
|
For PostgreSQL you can use either of these operations
| ||||
|
feedback
|