Catégorie : Postgresql

[PostgreSQL] Find all the table and index size

SELECT TableName ,pg_size_pretty(pg_table_size(TableName)) AS TableSize ,pg_size_pretty(pg_indexes_size(TableName)) AS IndexSize ,pg_size_pretty(pg_total_relation_size(TableName)) AS TotalSize FROM ( SELECT (‘ »‘ || table_schema || ‘ ». »‘ || table_name || ‘ »‘) AS TableName FROM information_schema.tables ) AS Tables. read more…

PostgreSQL Un tour d’horizon !

PostgreSQL around the world   PostgreSQL 16 is out. https://www.postgresql.org/docs/16/release-16.html   Digging into PostgreSQL iceberg https://avestura.dev/blog/explaining-the-postgres-meme   PostgreSQL partitioning https://www.timescale.com/blog/when-to-consider-postgres-partitioning/   Who does PostgreSQL https://momjian.us/main/blogs/pgblog/2023.html#September_11_2023  

Translate »