Re: pg_dump restore as transaction? - Mailing list pgsql-general

From Peter Billen
Subject Re: pg_dump restore as transaction?
Date
Msg-id 20081201183624.xh0ae5ygxzwg04go@webmail.clueless.be
Whole thread Raw
In response to pg_dump restore as transaction?  (Owen Hartnett <owen@clipboardinc.com>)
List pgsql-general
Quoting Owen Hartnett <owen@clipboardinc.com>:

>
> If my perusal of the sql generated by pg_dump is correct, then it
> doesn't appear that it's wrapped in a transaction, and thus might be
> able to only complete a partial restore?
>
> Or does
>
> psql myDatabase <mypg_dumpfile
>

Try to use pg_restore with the following option:

  -1, --single-transaction
                           restore as a single transaction

Or psql with the following option:

  -1 ("one")      execute command file as a single transaction

Kind regards,

Peter



pgsql-general by date:

Previous
From: Alvaro Herrera
Date:
Subject: Re: pg_dump restore as transaction?
Next
From: Owen Hartnett
Date:
Subject: Re: pg_dump restore as transaction?