Skip to content

Instantly share code, notes, and snippets.

@asolera
Created November 1, 2021 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asolera/0d23935647f2949f340cdd64bc6b185a to your computer and use it in GitHub Desktop.
Save asolera/0d23935647f2949f340cdd64bc6b185a to your computer and use it in GitHub Desktop.
Show dead tuples on PostgreSQL
SELECT relname AS "table_name",
n_dead_tup AS "dead_tuples"
FROM pg_stat_user_tables;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment