Skip to content

Instantly share code, notes, and snippets.

View pshen's full-sized avatar

Chenjun Shen pshen

View GitHub Profile
@pshen
pshen / gist:4dd92177149c256c6337
Last active August 29, 2015 14:01 — forked from jberkus/gist:6b1bcaf7724dfc2a54f3
Finding unused indexes
WITH table_scans as (
SELECT relid,
tables.idx_scan + tables.seq_scan as all_scans,
( tables.n_tup_ins + tables.n_tup_upd + tables.n_tup_del ) as writes,
pg_relation_size(relid) as table_size
FROM pg_stat_user_tables as tables
),
all_writes as (
SELECT sum(writes) as total_writes
FROM table_scans