I have a PostgreSQL table named census
. I have performed the ANALYSE
command on the table, and the statistics are recorded in pg_stats
.
There are other entries in this pg_stats
from other database tables as can be expected.
However, I wanted to know the space consumed for storing the histogram_bounds
for the census
table alone. Is there a good and fast way for it?
PS: I have tried dumping the pg_stats
table onto the disk to measure the memory using
select * into copy_table from census where tablename='census';
However, it failed because of the pseudo-type anyarray
.
Any ideas there too?