Skip to content

Instantly share code, notes, and snippets.

View KeynesYouDigIt's full-sized avatar
🥑
Currently thinking about how completely unnecessary a "status" is for git hub

Vincent Buscarello KeynesYouDigIt

🥑
Currently thinking about how completely unnecessary a "status" is for git hub
  • findhelp.org
  • United States
View GitHub Profile
@jberkus
jberkus / gist:6b1bcaf7724dfc2a54f3
Last active January 7, 2024 21:26
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