Copy a PostgreSQL database to a target PostgreSQL server
Copy a Postgres database to a target Postgres server
pgcopydb$ pgcopydb copy --source postgres://user:pass@source:5432/dbname --target postgres://user:pass@target:5432/dbname$ pgcopydb copy --source postgres://localhost/sourcedb --target postgres://localhost/targetdb --jobs 4$ pgcopydb copy --source postgres://user@source/db --target postgres://user@target/db --verbose