Mastodon

Tag: Programming

Blog RSS feed: "Programming"

An image visually showing the article title.
Free Software, Open Source, PostgreSQL, Programming

Did you know? Tables in PostgreSQL are limited to 1,600 columns

It's a hard-coded limit in Postgres for tables to not exceed 1,600 columns. Let's test all the ways you can reach that limit, and explore how to address the situation when you reach this limit unexpectedly.

by Frédéric Delacourt
The text 'Cumulative Statistics in PostgreSQL 18 - A blog focused on the updates introduced to the statistics &.monitoring subsystem in PostgreSQL 18. Here, we’ll explore what’s new, what to watch out for, GUC knobs, and how extension authors can leverage the new C API surface.' with the PostgreSQL elephant logo above and the Data Bene logo underneath.
Free Software, PostgreSQL, Programming, Statistics

Cumulative Statistics in PostgreSQL 18

In PostgreSQL 18, the statistics & monitoring subsystem receives a significant overhaul - extended cumulative statistics, new per-backend I/O visibility, the ability for extensions to export / import / adjust statistics, and much more. Let's explore these changes.

by Cédric Villemain
 PostgreSQL elephant in secure vault streaming QR codes
Backup, PostgreSQL, Programming, QRCode, Restore, Story

Once Upon a Time in a Confined Database - PostgreSQL, QRCodes, and the Art of Backup Without a Network

In a room sealed tighter than a submarine vault, a PostgreSQL instance lived without network, external storage, or escape. No USB. No cloud. Just a screen—and a desperate need to back up critical data. Our solution? Modify pg_dump to stream QR codes at 60 frames per second, film the screen, and reassemble the dump from video. It wasn’t just secure—it was cinematic.

by Cédric Villemain
The title (Postgres Café: Expand monitoring capabilities with StatsMgr) with aesthetic elements like an arrow, lightbulb, and emphasis.
Company, Free Software, PostgreSQL, Programming

Postgres Café: Expand monitoring capabilities with StatsMgr

Introducing StatsMgr, a PostgreSQL extension designed for efficient and organized management of statistics. Learn more in our new Postgres Café blog and video series.

by Sarah Conway
An image representing the unexpected data type transformations detailed in this blog.
Free Software, PostgreSQL, Programming

Strange data type transformations

An in depth look at strange data type transformations, when your function argument types might be changed differently than you expect.