如何从postgres数据库中删除所有索引表?

时间:2018-02-19 06:47:38

标签: postgresql postgresql-9.3

我的数据库中有很多索引表。我想删除它们,只索引那些非常大的表。我该如何删除它们?

我能做到

select relname from pg_class where relkind='i'; and drop index

但我认为这个查询也会删除一些系统表。如何在不影响数据库的thr功能的情况下执行此操作?

1 个答案:

答案 0 :(得分:2)

如果使用pg_class查找所有索引,则需要将其加入pg_namespace并过滤存储表(和索引)的模式。

pg_indexes更容易改为:

select schemaname, 
       indexname, 
       tablename, 
       format('drop index %I.%I;', schemaname, indexname) as drop_statement
from pg_indexes
where schemaname not in ('pg_catalog', 'pg_toast');

然而,这也将显示用于主键的索引。

如果要排除主键索引,可以使用以下内容:

select s.nspname as schemaname,
       i.relname as indexname,
       t.relname as tablename,
       format('drop index %I.%I;', s.nspname, i.relname) as drop_statement
from pg_index idx
  join pg_class i on i.oid = idx.indexrelid
  join pg_class t on t.oid = idx.indrelid
  join pg_namespace s on i.relnamespace = s.oid
where s.nspname  not in ('pg_catalog', 'pg_toast')
  and not idx.indisprimary;

如果您还想排除唯一索引,只需将and not idx.indisunique添加到where条件。