Created
May 15, 2024 14:03
-
-
Save Charmatzis/c7ce1b2319b8f701d5cc567baee83a08 to your computer and use it in GitHub Desktop.
Postgres DB bload
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE EXTENSION pgstattuple; | |
select | |
relname, | |
oid, | |
relowner, | |
(pgstattuple(oid)).dead_tuple_percent , | |
(pgstattuple(oid)).* | |
from | |
pg_class | |
where | |
relkind = 'r' | |
order by | |
dead_tuple_percent desc; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment