Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a postgres command to list/drop all materialized views?

I am creating multiple views in my code and each time the code is run, I would like to drop all the materialized views generated thus far. Is there any command that will list all the materialized views for Postgres or drop all of them?

like image 868
user1150989 Avatar asked Apr 15 '14 19:04

user1150989


People also ask

How do I drop materialized view log?

To drop a materialized view log, you must have the privileges needed to drop a table. Specify the schema containing the materialized view log and its master table. If you omit schema , then Oracle Database assumes the materialized view log and master table are in your own schema.

Can we drop materialized view?

Use the DROP MATERIALIZED VIEW statement to remove an existing materialized view from the database. When you drop a materialized view, Oracle Database does not place it in the recycle bin. Therefore, you cannot subsequently either purge or undrop the materialized view.

What is Pg_catalog?

The PostgreSQL Catalog. PostgreSQL stores the metadata information about the database and cluster in the schema 'pg_catalog'. This information is partially used by PostgreSQL itself to keep track of things itself, but it also is presented so external people / processes can understand the inside of the databases too.


1 Answers

Pure SQL

Show all:

SELECT oid::regclass::text FROM   pg_class WHERE  relkind = 'm'; 

Names are automatically double-quoted and schema-qualified where needed according to your current search_path in the cast from regclass to text.

In the system catalog pg_class materialized views are tagged with relkind = 'm'.
The manual:

m = materialized view 

To drop all, you can generate the needed SQL script with this query:

SELECT 'DROP MATERIALIZED VIEW ' || string_agg(oid::regclass::text, ', ')  FROM   pg_class WHERE  relkind = 'm'; 

Returns:

DROP MATERIALIZED VIEW mv1, some_schema_not_in_search_path.mv2, ... 

One DROP MATERIALIZED VIEW statement can take care of multiple materialized views. You may need to add CASCADE at the end if you have nested views.

Inspect the resulting DDL script to be sure before executing it. Are you sure you want to drop all MVs from all schemas in the db? And do you have the required privileges to do so? (Currently there are no materialized views in a fresh standard installation.)

Meta command in psql

In the default interactive terminal psql, you can use the meta-command:

\dm 

Executes this query on the server:

SELECT n.nspname as "Schema",   c.relname as "Name",   CASE c.relkind WHEN 'r' THEN 'table' WHEN 'v' THEN 'view' WHEN 'm' THEN 'materialized view' WHEN 'i' THEN 'index' WHEN 'S' THEN 'sequence' WHEN 's' THEN 'special' WHEN 'f' THEN 'foreign table' WHEN 'p' THEN 'partitioned table' WHEN 'I' THEN 'partitioned index' END as "Type",   pg_catalog.pg_get_userbyid(c.relowner) as "Owner" FROM pg_catalog.pg_class c      LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace WHERE c.relkind IN ('m','')       AND n.nspname <> 'pg_catalog'       AND n.nspname <> 'information_schema'       AND n.nspname !~ '^pg_toast'   AND pg_catalog.pg_table_is_visible(c.oid) ORDER BY 1,2; 

Which can be reduced to:

SELECT n.nspname as "Schema"      , c.relname as "Name"      , pg_catalog.pg_get_userbyid(c.relowner) as "Owner" FROM   pg_catalog.pg_class c LEFT   JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace WHERE  c.relkind = 'm' AND    n.nspname <> 'pg_catalog' AND    n.nspname <> 'information_schema' AND    n.nspname !~ '^pg_toast' AND    pg_catalog.pg_table_is_visible(c.oid) ORDER  BY 1,2; 
like image 81
Erwin Brandstetter Avatar answered Sep 30 '22 11:09

Erwin Brandstetter