Hi,
If you use the directory dump method, -Fd, then you could generate an editable listing where you can selectively remove stuff that you don't want to restore, just keeping the stuff related to your specific table. You run pg_restore once to generate the listing. Then run pg_restore again using that modified listing to load into the target database. See the pg_restore docs for exact syntax.
Regards,
Michael Vitale
On 08/09/2022 8:06 AM EDT Thomas Kellerer <shammat@xxxxxxx> wrote:Hello,I just realized that usingpg_restore -t some_table ... some_dump_filedoesn't restore things like identity attributesor indexes on the specified table.The dump contains much more than just that table, so simplyusing pg_restore without -t is not an option.While I could extract the indexes manually using some clever regexon the index names, I don't see a way to make sure that identitydefinitions (or sequence values) are restored properly for the selected table.Any ideas, how I can _fully_ restore a single table from a custom dump?Thomas