Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Delay materialized view refresh during pg_restore
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
@viktorvillalobos
Copy link

Excelent

@iam4x
Copy link

iam4x commented Jun 11, 2020

Thanks 👍

@ndufrane
Copy link

thx !

@Jinghua-Li
Copy link

Good,Thanks!

@cazter
Copy link

cazter commented Feb 10, 2021

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