PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Comment actualiser toutes les vues matérialisées dans Postgresql 9.3 à la fois ?

On dirait que la version actuelle de PostgreSQL (9.3.1) n'a pas cette fonctionnalité, j'ai dû écrire ma propre fonction à la place :

CREATE OR REPLACE FUNCTION RefreshAllMaterializedViews(schema_arg TEXT DEFAULT 'public')
RETURNS INT AS $$
DECLARE
    r RECORD;
BEGIN
    RAISE NOTICE 'Refreshing materialized view in schema %', schema_arg;
    FOR r IN SELECT matviewname FROM pg_matviews WHERE schemaname = schema_arg 
    LOOP
        RAISE NOTICE 'Refreshing %.%', schema_arg, r.matviewname;
        EXECUTE 'REFRESH MATERIALIZED VIEW ' || schema_arg || '.' || r.matviewname; 
    END LOOP;

    RETURN 1;
END 
$$ LANGUAGE plpgsql;

(sur github :https://github.com/sorokine/RefreshAllMaterializedViews )