Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Latest commit

 

History

History
26 lines (23 loc) · 460 Bytes

vacuum.md

File metadata and controls

26 lines (23 loc) · 460 Bytes

Vacuum

Find tables that need Vacuum

SELECT
    sti.schema AS schema_name,
    sti.table AS table_name,
    sti.size AS mb,
    sti.unsorted AS unsorted,
    sti.stats_off AS stats_off,
    *
FROM
    svv_table_info AS sti
WHERE
    sti.schema = 'mk_3311_1'
    AND sti.size >= 100
    AND (sti.unsorted >= 50.0 OR sti.unsorted IS NULL)
ORDER BY
    sti.size DESC,
    sti.unsorted DESC,
    sti.tbl_rows DESC
;

(note: tune the values above)