Re: restore OIDs

From: Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>
To: Dino Mifsud <dinomifsud74(at)gmail(dot)com>, pgsql-admin(at)lists(dot)postgresql(dot)org
Subject: Re: restore OIDs
Date: 2018-03-16 09:40:52
Message-ID: 1521193252.2501.2.camel@cybertec.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Dino Mifsud wrote:
> I have a table where I am storing images in a column of type OID which is
> pointing to the pg_largeobject table.
>
> Now when I try do a pg_dump and restore just a schema from one database to another
> with the below commands, the OID column in the table is correctly restored with the
> original number but the pg_largeobject table in the restored database does not contain
> these OID entries that store the actual image bytes and therefore the images are not restored.
>
> pg_dump --data-only --host localhost --port 5432 --username "postgres" --schema=myschema \
> --format custom --verbose --file "/Users/myuser/Work/databases_backup/original.backup" "db1"
>
> pg_restore --host localhostd --port 5432 --username "postgres" --schema=myshcema \
> --disable-triggers -d db2 "/Users/myuser/Work/databases_backup/original.backup"
>
>
> How can I dump and restore correctly just a particular schema?

If you use the --schema option, but want to dump large objects too, add the --blobs option.

Yours,
Laurenz Albe
--
Cybertec | https://www.cybertec-postgresql.com

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Michael.Dietrich 2018-03-16 13:28:42 Connect to db denied for superuser inherited by group
Previous Message Dino Mifsud 2018-03-16 08:56:11 restore OIDs