Are ‘Block’ and ‘Page’ the Same in PostgreSQL?

postgresqlterminology

I've seen many blogs and videos talking about Postgres 'blocks'. Are these the same as 'pages' in other database management system implementations?

Best Answer

If you're talking about the 8kB subdivisions of physical table storage, then yes.

These are usually called "pages" in Postgres as well, and that is the terminology used in the docs.