restore OIDs - Mailing list pgsql-admin

From Dino Mifsud
Subject restore OIDs
Date
Msg-id CAEkXPXk8hE3GAnhxEO4nD3RX+2MnhLmS1=jgVPhikEq6i4Uy_w@mail.gmail.com
Whole thread Raw
Responses Re: restore OIDs  (Laurenz Albe <laurenz.albe@cybertec.at>)
List pgsql-admin

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?


Thanks

pgsql-admin by date:

Previous
From: Jerry Sievers
Date:
Subject: Wal fetching standby refuses to promote
Next
From: Laurenz Albe
Date:
Subject: Re: restore OIDs