<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Jishnu Saha</title>
    <description>The latest articles on DEV Community by Jishnu Saha (@jishnusaha89).</description>
    <link>https://dev.to/jishnusaha89</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4080245%2F40bff0f7-05c0-492d-8f4a-caf42c039967.jpg</url>
      <title>DEV Community: Jishnu Saha</title>
      <link>https://dev.to/jishnusaha89</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jishnusaha89"/>
    <language>en</language>
    <item>
      <title>How Does a Database Actually Store Your Data?</title>
      <dc:creator>Jishnu Saha</dc:creator>
      <pubDate>Thu, 20 Aug 2026 10:00:32 +0000</pubDate>
      <link>https://dev.to/jishnusaha89/how-does-a-database-actually-store-your-data-17f1</link>
      <guid>https://dev.to/jishnusaha89/how-does-a-database-actually-store-your-data-17f1</guid>
      <description>&lt;p&gt;Every backend engineer has run SELECT * FROM users WHERE id = 42 a thousand times.&lt;br&gt;
Most assume the database goes and grabs exactly that one row.&lt;br&gt;
But it doesn't. It can't.&lt;br&gt;
Disks read in fixed-size blocks, not single rows — so databases define their own unit for this: a page. Every read pulls the whole page, then selects the row from it.&lt;br&gt;
That one fact explains a lot — why deleted rows don't vanish immediately, why a table's file is bigger than its raw data, why "no index" means scanning every single page, and why an index actually works (it's just a sorted shortcut to a page + slot).&lt;br&gt;
I wrote a deep dive on pages, slotted pages, heap files, and full table scans — the physical layer underneath every SQL query: &lt;a href="https://jishnusaha.me/blog/database/how-db-store-data" rel="noopener noreferrer"&gt;https://jishnusaha.me/blog/database/how-db-store-data&lt;/a&gt;&lt;/p&gt;

</description>
      <category>database</category>
      <category>postgres</category>
      <category>databaseinternals</category>
    </item>
  </channel>
</rss>
