Databases

Storage, migrations, query tools and clients.

Nothing launched in this category yet.

Be the first

About Databases

Database tooling is one of those categories where the interesting launches are rarely new databases. They are the things around the database: clients that make a schema legible, migration tools that do not require courage to run, local development environments, branching for data, and the query builders and inspectors that turn a production incident into a five-minute investigation.

Clients and GUIs are the most-launched group and the easiest to judge, because you know within an hour whether one fits your head. The differentiators worth caring about are how it handles a large result set, whether it can explain a query plan in a way that is actually readable, and whether it makes destructive operations deliberately harder than safe ones. A client that lets you run an unqualified update as easily as a select is a client that will eventually cost someone a bad afternoon.

Migration tooling is where the real risk lives and where careful design shows. The things that matter are reversibility, whether the tool can tell you what it is about to do before it does it, and how it behaves against a database that has drifted from what the migration history expects. Anything that answers those three well is worth more attention than something with a nicer interface.

Branching and ephemeral database environments have become genuinely practical in the last couple of years, and they change how teams work more than the feature description suggests. Being able to spin a copy of production-shaped data per pull request removes an entire class of "works on my machine" problem. The costs to check are how the copy is made, how long it takes, and what happens to sensitive data in the copy.

On the data itself, anonymisation and seeding tools sit here too and are chronically underrated. A good synthetic dataset that matches your production distributions makes local development faster and removes a compliance problem at the same time.

For anything in this subcategory that touches production, the reviews are more valuable than the landing page. Look for people describing what happened during an incident, not during a demo. See also [data quality](/categories/data-quality) for the tooling that watches what the database contains rather than how you reach it.

From the blog

Reading on launching, ranking and databases.

All posts