ar
Feedback
PostgreSQL DBA

PostgreSQL DBA

الذهاب إلى القناة على Telegram

Sharing knowledge about postgresql database

إظهار المزيد
2 025
المشتركون
لا توجد بيانات24 ساعات
+17 أيام
-730 أيام

جاري تحميل البيانات...

جذب المشتركين
يونيو '26
يونيو '26
+4
في 0 قنوات
مايو '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 قنوات
التاريخ
نمو المشتركين
الإشارات
القنوات
05 يونيو0
04 يونيو0
03 يونيو+1
02 يونيو+1
01 يونيو+2
منشورات القناة
photo content

2
لا يوجد نص...
268
3
لا يوجد نص...
259
4
Configuration Parameters
Configuration Parameters
247
5
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);
197
6
لا يوجد نص...
154
7
لا يوجد نص...
160
8
لا يوجد نص...
140
9
Beyond indexing, several query optimization techniques can significantly improve performance.
Beyond indexing, several query optimization techniques can significantly improve performance.
123
10
Unused Indexes: Identify and remove unused indexes to reduce write overhead. The pg_stat_all_indexes view provides information about index usage.
126
11
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.
122
12
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.
127
13
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.
132
14
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.
130
15
لا يوجد نص...
127
16
Indexes are crucial for improving query performance, but they also add overhead to write operations. Choosing the right indexes and maintaining them properly is essential.
131
17
Filtering: Where clauses that filter the data. If a filter is being applied after a large amount of data has already been processed, this is a sign the query could be optimized.
127
18
Rows: The estimated number of rows returned by each operation. Significant discrepancies between estimated and actual rows (observed with EXPLAIN ANALYZE) can indicate inaccurate statistics, leading the planner to choose a suboptimal plan.
119
19
Cost: The estimated cost of each operation. The planner uses a cost model to estimate the resources required to perform each operation. Higher costs usually indicate potential bottlenecks.
115
20
لا يوجد نص...
116