Postgres: Manually analyze
ANALYZE table_name;
-- Analyzes the "table_name" table ANALYZE schema_name.table_name; -- Analyzes the "table_name" table within the "schema_name" schema ANALYZE database_name; -- Analyzes all tables within the "database_name" database
Comments
Post a Comment