DEFINITIONS

Definitions More Info.
Definition ID840
TitlePOSTGRESQL
CategoryNOTES
DefinitionVacuum and analayse tables script
Definition DescriptionSELECT
'VACUUM (VERBOSE, ANALYZE)' || '"' || schemaname || '"' || '.' || '"' || relname || '"' || ';'
FROM
pg_stat_all_tables
WHERE
n_dead_tup <> 0
ORDER BY
n_dead_tup DESC;
RecordBycunay
Record Date06-06-2018 13:19:14
Düzenle
Kopyala
Sil