Re: How pg_dump works - Mailing list pgsql-general

From Achilleas Mantzios
Subject Re: How pg_dump works
Date
Msg-id 57FB868D.2050400@matrix.gatewaynet.com
Whole thread Raw
In response to How pg_dump works  (Moreno Andreo <moreno.andreo@evolu-s.it>)
Responses Re: How pg_dump works  (Moreno Andreo <moreno.andreo@evolu-s.it>)
List pgsql-general
On 10/10/2016 14:50, Moreno Andreo wrote:
> Hi all,
>     I need to pg_dump a database to another server.
> The particularity is that the database is bigger than remaining space on disk. Obviously, this is not a problem
becausei'm dumping to another host, but I need to know if the procedure streams data  
> to remote host or the data itself is packed up in temporary file(s) that are sent to remote host.
> The former would be such a problem, because there are good chances I'll have my disk filled up...
>
> I've not found details on this in documentation.
>

In fact, in the docs there is all the info you might ever need. PostgreSQL project excels on that compared to *many*
free-softwareprojects. Now what you could do is something like : 
createdb -h your_big_server your_database
pg_dump -h your_small_server your_database | psql -h your_big_server -f - your_database

> Thanks
> Moreno.
>
>
>
>
>


--
Achilleas Mantzios
IT DEV Lead
IT DEPT
Dynacom Tankers Mgmt



pgsql-general by date:

Previous
From: Moreno Andreo
Date:
Subject: How pg_dump works
Next
From: hamann.w@t-online.de
Date:
Subject: Re: How pg_dump works