Re: How pg_dump works

From: Moreno Andreo <moreno(dot)andreo(at)evolu-s(dot)it>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: How pg_dump works
Date: 2016-10-10 12:25:31
Message-ID: 4aca9418-b2ea-8320-6be6-702c1e4d091a@evolu-s.it
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Il 10/10/2016 14:16, hamann(dot)w(at)t-online(dot)de ha scritto:
>>> 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 because i'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.
>>>
>>> Thanks
>>> Moreno.
>>>
> Hi Moreno,
>
> it is one big stream.
OK, that's good news :-)

Thanks
Moreno.
> I am sending compressed pg_dump and can actually use
> zcat dumpfile.gz | psql mydatabase
> on the other end
>
> Regards
> Wolfgang
>
>
>
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Merlin Moncure 2016-10-10 13:49:43 Re: Transactional-DDL DROP/CREATE TABLE
Previous Message Moreno Andreo 2016-10-10 12:24:34 Re: How pg_dump works