gokul goku
gokul goku

Reputation: 13

How to exclude a particular table in postgres backup using pgbackrest?

Trying to exclude a particular table alone during postgres backup. Is there something similar in pgbackrest like pg_dump

pg_dump --exclude-table-data=ex_table demodb

Upvotes: 1

Views: 750

Answers (1)

pifor
pifor

Reputation: 7882

I have not found such option in pbBackRest and that is expected because it's a physical backup tool and not a logical backup tool like pg_dump.

Upvotes: 1

Related Questions