-
Notifications
You must be signed in to change notification settings - Fork 102
Open
Description
Using the table bloat checker here I get this on my database (PG 14):
current_database | schemaname | tblname | real_size | extra_size | extra_pct | fillfactor | bloat_size | bloat_pct | is_na
------------------+------------+----------------------------+-------------+-------------+--------------------+------------+-------------+--------------------+-------
cc_perf | cc_merge | ccx_ex_contactdrpservices | 29351370752 | 14890582016 | 50.732151972784294 | 100 | 14890582016 | 50.732151972784294 | f
But with pgstattuple I get this:
SELECT tuple_percent, dead_tuple_percent, free_percent FROM pgstattuple('cc_merge.ccx_ex_contactdrpservices');
tuple_percent | dead_tuple_percent | free_percent
---------------+--------------------+--------------
94.65 | 0 | 3.68
Why the big discrepency?
Metadata
Metadata
Assignees
Labels
No labels