Last active
January 4, 2024 18:17
-
-
Save kmatt/14c8e6ae2cff9e4faa0e 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 |
muchos grassy-ass amigo. which is spanish for you're awesome
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good,Thanks!