Re: How to fully restore a single table from a custom dump? - Mailing list pgsql-admin

From Tom Lane
Subject Re: How to fully restore a single table from a custom dump?
Date
Msg-id 819154.1660051665@sss.pgh.pa.us
Whole thread Raw
In response to How to fully restore a single table from a custom dump?  (Thomas Kellerer <shammat@gmx.net>)
Responses Re: How to fully restore a single table from a custom dump?  (Thomas Kellerer <shammat@gmx.net>)
List pgsql-admin
Thomas Kellerer <shammat@gmx.net> writes:
> Any ideas, how I can _fully_ restore a single table from a custom dump?

"pg_restore -l -v" will give you a table-of-contents with
dependencies, like this:

8155; 0 40431 MATERIALIZED VIEW DATA public analytics_materialized_view postgres
;       depends on: 960 8161

This is object number 8155 and it depends on objects 960 and 8161.

Find the table you want, then look for things with dependencies
on it (some of them may not be things you want to restore).
Edit away all the lines for things you don't want, then feed
the reduced list to "pg_restore -L".

            regards, tom lane



pgsql-admin by date:

Previous
From: Holger Jakobs
Date:
Subject: Re: How to fully restore a single table from a custom dump?
Next
From: Ron
Date:
Subject: Re: How to fully restore a single table from a custom dump?