credativ® Blog

Here you will find interesting news about industry-specific topics and us.

Categories
Category
Tags

Categories

Tags

Category: PostgreSQL®

30 January 2026

How to secure PostgreSQL databases correctly?

Multi-layered PostgreSQL security with encryption, backup strategies, and continuous monitoring effectively protects corporate data.

Read more

16 January 2026

What is PostgreSQL? The complete beginner's guide

PostgreSQL Beginner's Guide: Installation, configuration, and business benefits of the free open-source database explained.

Read more

06 January 2026

Dissecting PostgreSQL Data Corruption

PostgreSQL 18 made one very important change – data block checksums are now enabled by default for new clusters at cluster initialization time. I already wrote about it in my previous article. I also mentioned that there are still many existing PostgreSQL installations without data checksums enabled, because this was the default in previous versions. […]

Read more

15 December 2025

PostgreSQL 18 Asynchronous Disk I/O - Deep Dive Into Implementation

PostgreSQL 17 introduced streaming I/O – grouping multiple page reads into a single system call and using smarter posix_fadvise() hints. That alone gave up to ~30% faster sequential scans in some workloads, but it was still strictly synchronous: each backend process would issue a read and then sit there waiting for the kernel to return […]

Read more

05 December 2025

A deeper look at old UUIDv4 vs new UUIDv7 in PostgreSQL 18

In the past there have been many discussions about using UUID as a primary key in PostgreSQL. For some applications, even a BIGINT column does not have sufficient range: it is a signed 8‑byte integer with range −9,223,372,036,854,775,808 to +9,223,372,036,854,775,807. Although these values look big enough, if we think about web services that collect billions […]

Read more