PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

aggiorna periodicamente la visualizzazione materializzata dopo il gres

il modo migliore è eseguire periodicamente uno script che esegua il compito:

lo script è:

#!/bin/sh
psql -U user_name -d database_instance_name -c 'refresh materialized view view_name'

e aggiungi una voce nel crontab come:

@hourly  /full_path/script_name.sh