Sammlung von Newsfeeds

Christophe Pettus: All Your GUCs in a Row: event_source

Neues vom PostgreSQL Planet - 15. Juli 2026 - 3:00
Windows PostgreSQL logs messages to the Event Log under a name you choose with `event_source`—but Windows won't understand that name until you register it with…

Partition pruning without the partition key

Postgres Weekly - 15. Juli 2026 - 2:00

#​657 — July 15, 2026

Web Version

Postgres Weekly

Regina Obe: Replacing pgAgent with pg_timetable: Part 2 - Installing pg_timetable as a service in Linux

Neues vom PostgreSQL Planet - 14. Juli 2026 - 22:07

As stated in Part 1, pgAgent is going away, so I'm focussing on setting up pg_timetable as similar to pgAgent that I can. For this second part, I'm going to go over how to configure pg_timetable as a service on Linux.

Jimmy Angelakos: LinkedIn Live: Fixing Bad SQL in PostgreSQL with Jimmy Angelakos

Neues vom PostgreSQL Planet - 14. Juli 2026 - 14:37

Back on Friday, April 3rd, I ran a live, hands-on LinkedIn Live session on fixing bad SQL in PostgreSQL. My apologies for the delay in sharing the recording: for various reasons I couldn't post it earlier, but here it is.

Hans-Juergen Schoenig: How SQL/PGQ Rewrites to Joins on PostgreSQL 19

Neues vom PostgreSQL Planet - 14. Juli 2026 - 7:00

This post is about what PostgreSQL actually does when you write GRAPH_TABLE syntax. It turns out the database rewrites your graph query into ordinary joins against the underlying tables, then plans them with the regular optimizer. This has three practical consequences you'll notice right away.

Christophe Pettus: All Your GUCs in a Row: escape_string_warning

Neues vom PostgreSQL Planet - 14. Juli 2026 - 3:00
A twenty-year-old warning that stays silent on modern PostgreSQL—until it spots a real problem hiding in your connection settings.

Cornelia Biacsics: Contributions for week 26 & 27

Neues vom PostgreSQL Planet - 13. Juli 2026 - 17:43

On 2 July, 2026, the PostgreSQL Istanbul Meetup met for the first time, organized by Devrim Gündüz, Gülçin Yıldırım Jelínek & Bilge Korkmaz Erdim.

Speakers:

  • Viktoriia Hrechukha
  • Pavlo Golub

On 2 July 2026, the PostgreSQL User Group Estonia met, organized by Ervin Weber

Speakers:

Jimmy Angelakos: PostgresEDI July 2026 Meetup — Public Speaking, AI Compliance

Neues vom PostgreSQL Planet - 13. Juli 2026 - 14:37

Actual sunshine ☀️ in Edinburgh 😲 and a room full of Postgres people catching up over pizza: July was good to us. 🐘

Christophe Pettus: All Your GUCs in a Row: enable_tidscan

Neues vom PostgreSQL Planet - 13. Juli 2026 - 3:00
TID scans only happen when you explicitly ask for them via `ctid`, making `enable_tidscan` a knob you'll almost certainly never touch.

Pavlo Golub: Swiss PgDay 2026 [UNLOGGED]

Neues vom PostgreSQL Planet - 13. Juli 2026 - 2:00

We at CYBERTEC usually spend a lot of time producing polished community documentaries, but sometimes you just want to push the raw data straight to the output. Welcome to the UNLOGGED experiment for Swiss PgDay 2026!

Radim Marek: The tests passed. The plan didn't.

Neues vom PostgreSQL Planet - 12. Juli 2026 - 20:16

TL;DR - RegreSQL 1.0 tested that your queries return the right rows. 2.0 tests that they return them the right way, and it does the checking against production's real statistics instead of your empty dev database, which lies.

A migration cleanup dropped an index nobody thought was load-bearing. Every test passed: same rows, same order, green. Three days later the API started timing out on a query that hadn't changed a character, because the planner had quietly switched it from an index scan to a sequential scan over a table that had kept growing.

Christophe Pettus: All Your GUCs in a Row: enable_sort

Neues vom PostgreSQL Planet - 12. Juli 2026 - 3:00
Disable `enable_sort` to fix a slow sort? Wrong target. Slow sorts need more `work_mem` or better indexes—not this GUC.

Andrei Lepikhov: Postgres community events: isn't it time to tap the capabilities of the digital era?

Neues vom PostgreSQL Planet - 12. Juli 2026 - 1:26

I've been going to conferences and meetups of all kinds since 2004. And today — much like in the era when a Nokia brick was giving people their first, still-primitive taste of mobility — these events follow the same format: you give a talk, you answer questions from the room, and the slides get posted somewhere. These days a video lands on YouTube too. Sometimes a chat survives the event, filled mostly with logistics. And that's about it.

Andrew Dunstan: (Belatedly) Announcing Release 21 of the PostgreSQL Buildfarm Client

Neues vom PostgreSQL Planet - 11. Juli 2026 - 15:34
 This release was made 9 days ago, but I just realized that I neglected to make a blog post about it. So, for the record, here is the announcement that went out via email. I have released version 21 of the PostgreSQL Buildfarm Client New features
  • PatchStack module — a new module for non-standard buildfarms that want to
    test a stack of patches on top of a branch. Note: this module is not for use with the

Christophe Pettus: All Your GUCs in a Row: enable_seqscan

Neues vom PostgreSQL Planet - 11. Juli 2026 - 3:00
enable_seqscan does not disable sequential scans. It cannot, and it was never meant to. The documentation says as much: sequential scans cannot be suppressed entirely, because sometimes reading the whole table is the only way to answer the query. What off actually does is tell the planner to avoi…

Dave Stokes: Ever Run Into A PostgreSQL Query That You Can Figure Out What It Does??

Neues vom PostgreSQL Planet - 10. Juli 2026 - 22:06

 Ever have a query 'tossed over the fence' that you find incomprehensible but still have to support it? A few years ago, you would have needed to triage the query. Obfuscated queries can be tough to decipher.  Sometimes, the query is due to someone or an ORM being clever. Many times the query is touch to read because the 

DBeaver recently added its AI Chat to the free, open-source DBeaver Community Edition. And you will find it very at determining what a query does. Let's start with a simple query.

Hans-Juergen Schoenig: Architecture behind pg_hardstorage: The replication protocol

Neues vom PostgreSQL Planet - 10. Juli 2026 - 7:00

If you've heard one thing about pg_hardstorage, it's probably that "it works against managed PostgreSQL". This post is about the one architectural choice that makes that true, and the consequences that fall out of it.

Christophe Pettus: All Your GUCs in a Row: enable_self_join_elimination

Neues vom PostgreSQL Planet - 10. Juli 2026 - 3:00
You are rarely the only thing writing your SQL. Your ORM writes some of it, your nested views write more, and sooner or later one of them joins a table to itself on its own primary key. That join returns exactly the rows it started with. enable_self_join_elimination is the PostgreSQL 18 optimizat…

Christophe Pettus: The Version Number Is Not the Territory

Neues vom PostgreSQL Planet - 9. Juli 2026 - 22:00
A PostgreSQL 14 database threw an error that PostgreSQL 14 cannot produce.

Vibhor Kumar: PostgreSQL, AI Governance, and the C.A.L.M. Platform Test

Neues vom PostgreSQL Planet - 9. Juli 2026 - 18:40

A few months ago, I spent time with multiple teams inside the same large financial services organization.

I spoke with the data engineering team. The AI and model team. The platform team. The governance and compliance team.

Each conversation sounded right.

That was the problem.

Seiten