Please confirm you are human

This browser or connection looks automated. Press and continuously hold the control for 3 seconds to enable Google-hosted web results and, when separately allowed, AI-assisted answers.

A successful check enables 100 search requests. Interactive access does not authorize scraping, systematic collection, or reuse of search output.

Hold with a pointer, or hold Space or Enter.

News

DEV Community
dev.to > mehradsadeghi > mysql-overselling-why-select-isnt-enough-and-how-select-for-update-solves-it-m0p

MySQL Overselling: Why SELECT Isn't Enough and How SELECT... FOR UPDATE Solves It

8+ hour, 3+ min ago   (431+ words) Imagine you’re running an online store, there’s exactly one item left in stock. Two customers click... Tagged with database, mysql, backend, softwareengineering....

DEV Community
dev.to > apexgridtech > data-substrate-versus-vector-db-rag-24e5

Data Substrate Versus Vector Db Rag

7+ hour, 54+ min ago   (1246+ words) This week’s headlines highlight the rapid evolution of AI in China, with models like Qwen and DeepSeek pushing the frontier of capability. But as these models grow more sophisticated, the conversation around how data is stored, queried, and used as…...

DEV Community
dev.to > mehradsadeghi > two-transactions-one-row-what-does-mysql-actually-let-you-see--52ga

Two Transactions, One Row: What Does MySQL Actually Let You See?

8+ hour, 4+ min ago   (554+ words) Two users, One database row, Both reading and writing at almost exactly the same time. Who sees... Tagged with database, mysql, softwareengineering, backend....

DEV Community
dev.to > mislam-dev > day-8-relational-database-101-postgresql-internals-j9c

Day 8 - Relational Database 101 - PostgreSQL Internals

19+ hour, 34+ min ago   (1576+ words) একবার একটু technological দিকে আসি, আপনি যখন Facebook বা LinkedIn-এ কাউকে message করেন তখন সেটা সরাসরি তার কাছে send হয়। Reason হচ্ছে আপনারা connected। এখানে আপনি directly message ত…...

DEV Community
dev.to > rahmanfrr > recursive-ctes-how-sql-secretly-learned-to-loop-457f

Recursive CTEs: How SQL Secretly Learned to Loop

20+ hour, 49+ min ago   (454+ words) Ask a SQL query to find "all employees under this manager," and things get ugly fast if you don't know how many levels deep the org chart goes. A regular join handles one level. Two joins handle two levels. Nobody's…...

Medium
medium.com > @dravonicx > the-sql-queries-that-lie-to-you-with-a-straight-face-10c060c76f67

The SQL Queries That Lie to You With a Straight Face

16+ hour, 50+ min ago   (191+ words) Seven queries that run without error, return a result, and are still wrong — and how to stop writing them. Some SQL mistakes throw an error …...

DEV Community
dev.to > alexgeorgiev17 > nile-isolates-postgres-tenants-with-a-tenantid-column-and-one-session-variable-4e3l

Nile isolates Postgres tenants with a tenant_id column and one session variable

1+ day, 14+ hour ago   (364+ words) Disclosure: I have no affiliation with Nile. Nobody asked me to write this and nobody paid for it. I signed up for their free tier like anyone else would. I'm on my way to test products and share my findings…...

Medium
medium.com > @singh.piyush > how-database-connection-pooling-actually-works-9fe9fb1b1a9a

How Database Connection Pooling Actually Works

1+ day, 12+ hour ago   (22+ words) Your database looks fine. Your app still hangs. Here's how connection pooling actually works and why the two aren't the same problem....

DEV Community
dev.to > rahmanfrr > window-functions-are-the-sql-superpower-nobody-taught-you-47nn

Window Functions Are the SQL Superpower Nobody Taught You

1+ day, 17+ hour ago   (26+ words) Running totals, top-N-per-group, and row comparisons — without the self-join headache. A practical walkthrough with real code and a cheat sheet. Tagged with sql, dataengineering, database, programming....

DEV Community
dev.to > gentlyding > stop-trusting-the-app-enforcing-append-only-at-the-database-layer-36om

Stop Trusting the App: Enforcing Append-Only at the Database Layer

1+ day, 19+ hour ago   (419+ words) Most "audit logs" are append-only by convention, not by enforcement. The application inserts a row and politely promises never to UPDATE or DELETE it. That promise holds right up until the moment someone does one of these: If a third…...