PostgreSQL DBA
رفتن به کانال در Telegram
2 026
مشترکین
اطلاعاتی وجود ندارد24 ساعت
+37 روز
-130 روز
در حال بارگیری داده...
کانالهای مشابه
ابر برچسبها
اشارات ورودی و خروجی
---
---
---
---
---
---
جذب مشترکین
اوت '26
اوت '26
+15
در 0 کانالها
ژوئیه '26
+30
در 0 کانالها
Get PRO
ژوئن '26
+20
در 0 کانالها
Get PRO
مه '26
+14
در 0 کانالها
Get PRO
آوریل '26
+17
در 0 کانالها
Get PRO
مارس '26
+14
در 0 کانالها
Get PRO
فوریه '26
+15
در 0 کانالها
Get PRO
ژانویه '26
+23
در 0 کانالها
Get PRO
دسامبر '25
+17
در 0 کانالها
Get PRO
نوامبر '25
+37
در 0 کانالها
Get PRO
اکتبر '25
+34
در 0 کانالها
Get PRO
سپتامبر '25
+27
در 0 کانالها
Get PRO
اوت '25
+38
در 0 کانالها
Get PRO
ژوئیه '25
+31
در 0 کانالها
Get PRO
ژوئن '25
+26
در 0 کانالها
Get PRO
مه '25
+34
در 0 کانالها
Get PRO
آوریل '25
+34
در 0 کانالها
Get PRO
مارس '25
+42
در 0 کانالها
Get PRO
فوریه '25
+40
در 0 کانالها
Get PRO
ژانویه '25
+46
در 0 کانالها
Get PRO
دسامبر '24
+60
در 0 کانالها
Get PRO
نوامبر '24
+74
در 0 کانالها
Get PRO
اکتبر '24
+60
در 0 کانالها
Get PRO
سپتامبر '24
+82
در 0 کانالها
Get PRO
اوت '24
+1 752
در 0 کانالها
| تاریخ | رشد مشترکین | اشارات | کانالها | |
| 26 اوت | 0 | |||
| 25 اوت | 0 | |||
| 24 اوت | 0 | |||
| 23 اوت | +2 | |||
| 22 اوت | 0 | |||
| 21 اوت | +2 | |||
| 20 اوت | +3 | |||
| 19 اوت | 0 | |||
| 18 اوت | +2 | |||
| 17 اوت | 0 | |||
| 16 اوت | +2 | |||
| 15 اوت | 0 | |||
| 14 اوت | 0 | |||
| 13 اوت | +1 | |||
| 12 اوت | 0 | |||
| 11 اوت | 0 | |||
| 10 اوت | 0 | |||
| 09 اوت | 0 | |||
| 08 اوت | 0 | |||
| 07 اوت | 0 | |||
| 06 اوت | 0 | |||
| 05 اوت | 0 | |||
| 04 اوت | 0 | |||
| 03 اوت | +1 | |||
| 02 اوت | +1 | |||
| 01 اوت | +1 |
پستهای کانال
| 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 | بدون متن... | 208 |
| 7 | بدون متن... | 375 |
| 8 | بدون متن... | 374 |
| 9 | بدون متن... | 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 | بدون متن... | 218 |
| 13 | بدون متن... | 222 |
| 14 | بدون متن... | 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 |
