Daily Shaarli

All links of one day in a single page.

August 6, 2018

PostgreSQL: Re: ALTER TABLE .. SET STATISTICS
thumbnail

For columns of type bytea which store image data (PDFs, JPGs, etc) would it
speed up the ANALYZE process to SET STATISTICS = 0?

Yes. I'd suggest also looking at ALTER TABLE ... SET STORAGE to avoid
having Postgres try to compress those columns, which is useless waste of
CPU cycles, since those formats already compress.