-
-
Save ndufrane/b31a6d3d6213e39aada5403d7c3b78b1 to your computer and use it in GitHub Desktop.
Delay materialized view refresh during pg_restore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pg_dump database -Fc backup.dump | |
pg_restore -l backup.dump | sed '/MATERIALIZED VIEW DATA/d' > restore.lst | |
pg_restore -L restore.lst -d database backup.dump | |
pg_restore -l backup.dump | grep 'MATERIALIZED VIEW DATA' > refresh.lst | |
pg_restore -L refresh.lst -d database backup.dump |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment