PostgreSQL DBA
Open in Telegram
2 026
Subscribers
No data24 hours
+37 days
-130 days
Data loading in progress...
Similar Channels
Tags Cloud
Incoming and Outgoing Mentions
---
---
---
---
---
---
Attracting Subscribers
August '26
August '26
+15
in 0 channels
July '26
+30
in 0 channels
Get PRO
June '26
+20
in 0 channels
Get PRO
May '26
+14
in 0 channels
Get PRO
April '26
+17
in 0 channels
Get PRO
March '26
+14
in 0 channels
Get PRO
February '26
+15
in 0 channels
Get PRO
January '26
+23
in 0 channels
Get PRO
December '25
+17
in 0 channels
Get PRO
November '25
+37
in 0 channels
Get PRO
October '25
+34
in 0 channels
Get PRO
September '25
+27
in 0 channels
Get PRO
August '25
+38
in 0 channels
Get PRO
July '25
+31
in 0 channels
Get PRO
June '25
+26
in 0 channels
Get PRO
May '25
+34
in 0 channels
Get PRO
April '25
+34
in 0 channels
Get PRO
March '25
+42
in 0 channels
Get PRO
February '25
+40
in 0 channels
Get PRO
January '25
+46
in 0 channels
Get PRO
December '24
+60
in 0 channels
Get PRO
November '24
+74
in 0 channels
Get PRO
October '24
+60
in 0 channels
Get PRO
September '24
+82
in 0 channels
Get PRO
August '24
+1 752
in 0 channels
| Date | Subscriber Growth | Mentions | Channels | |
| 26 August | 0 | |||
| 25 August | 0 | |||
| 24 August | 0 | |||
| 23 August | +2 | |||
| 22 August | 0 | |||
| 21 August | +2 | |||
| 20 August | +3 | |||
| 19 August | 0 | |||
| 18 August | +2 | |||
| 17 August | 0 | |||
| 16 August | +2 | |||
| 15 August | 0 | |||
| 14 August | 0 | |||
| 13 August | +1 | |||
| 12 August | 0 | |||
| 11 August | 0 | |||
| 10 August | 0 | |||
| 09 August | 0 | |||
| 08 August | 0 | |||
| 07 August | 0 | |||
| 06 August | 0 | |||
| 05 August | 0 | |||
| 04 August | 0 | |||
| 03 August | +1 | |||
| 02 August | +1 | |||
| 01 August | +1 |
Channel Posts
| 2 | Patroni is a widely used solution for managing PostgreSQL high availability. It provides a robust framework for automatic failover, cluster management, and operational simplicity in PostgreSQL environments.
https://www.cybertec-postgresql.com/en/patroni-cascading-replication-with-stanby-cluster/ | 250 |
| 3 | Cascading Replication
https://www.cybertec-postgresql.com/en/patroni-cascading-replication-with-stanby-cluster/ | 228 |
| 4 | https://stormatics.tech/blogs/the-1-gb-limit-that-breaks-pg_prewarm-at-scale | 195 |
| 5 | Schemas in PostgreSQL and Oracle: what is the difference?
https://www.cybertec-postgresql.com/en/schema-postgresql-oracle-difference/ | 208 |
| 6 | No text... | 208 |
| 7 | No text... | 375 |
| 8 | No text... | 374 |
| 9 | No text... | 360 |
| 10 | Configuration Parameters | 341 |
| 11 | CREATE TABLE orders (
order_id SERIAL PRIMARY KEY,
customer_id INTEGER,
order_date DATE,
order_total NUMERIC
) PARTITION BY RANGE (order_date);
CREATE TABLE orders_y2023 PARTITION OF orders
FOR VALUES FROM ('2023-01-01') TO ('2024-01-01');
CREATE TABLE orders_y2024 PARTITION OF orders
FOR VALUES FROM ('2024-01-01') TO ('2025-01-01');
-- Add an index to each partition
CREATE INDEX idx_orders_y2023_customer_id ON orders_y2023 (customer_id);
CREATE INDEX idx_orders_y2024_customer_id ON orders_y2024 (customer_id); | 270 |
| 12 | No text... | 218 |
| 13 | No text... | 222 |
| 14 | No text... | 192 |
| 15 | Beyond indexing, several query optimization techniques can significantly improve performance. | 169 |
| 16 | Unused Indexes: Identify and remove unused indexes to reduce write overhead. The pg_stat_all_indexes view provides information about index usage. | 167 |
| 17 | Index Bloat: As data is inserted, updated, and deleted, indexes can become fragmented and bloated, leading to performance degradation. Rebuild indexes periodically using the REINDEX command. | 161 |
| 18 | Statistics: PostgreSQL relies on statistics to estimate the cost of different query plans. Inaccurate statistics can lead to suboptimal plan choices. Regularly update statistics using the ANALYZE command. | 166 |
| 19 | Partial indexes index only a subset of the table's rows, based on a condition. This can reduce index size and improve performance when queries frequently filter on that condition. | 172 |
| 20 | Composite indexes index multiple columns. The order of columns in a composite index is important. The most frequently used column in WHERE clauses should come first. | 170 |
