03Data & Databases
Data & Databases
Queries that lie, keys that leak, and pipelines that quietly drop rows.
03
From the desk
Data & DatabasesDatabase applications that combine a connection pooler with a client library that auto-tracks prepared statements discover quickly that the two reuse strategies do not mix. Without matching…
Data & DatabasesNewly specified UUIDv7 changes the front of the identifier from random pattern to time sequence, which changes how keys cluster in indexes. For database administrators weighing primary key…
Data & DatabasesOffset pagination is a common approach to fetching rows in chunks for an interactive feed. But it has a hidden problem: the page boundaries are not anchored to any actual rows, so when the…
- 04
Data & DatabasesSQL's NOT IN operator can silently return no rows if its subquery has as much as one null. That's because the NOT IN predicate behaves like a chain of <> comparisons, all of which…