No Picture
MinervaDB

How to handle NULL values in PostgreSQL

How to handle NULL values in PostgreSQL IS NULL: This operator is used to check if a column or expression is NULL. Example: SELECT * FROM table WHERE column_name IS NULL; IS NOT NULL: This […]

No Picture
MinervaDB

How I/O cache influence PostgreSQL performance?

How I/O cache influence PostgreSQL performance? I/O cache plays an important role in PostgreSQL performance as it can greatly reduce the number of disk I/O operations that need to be performed. The PostgreSQL server uses [...]
No Picture
MinervaDB

Inspecting PostgreSQL Locks

Inspecting PostgreSQL Locks Inspecting PostgreSQL locks can be done using the pg_locks view in the system catalog. This view displays information about all currently held and awaited locks. The columns in this view include the [...]
No Picture
MinervaDB

How to tune a slow query in PostgreSQL?

How to tune a slow query in PostgreSQL? Tuning a slow query in PostgreSQL can involve several steps. Here are some general steps to take: Identify the slow query: Use the pg_stat_activity view to see [...]
No Picture
MinervaDB

How MySQL optimizer works?

How does MySQL optimizer work? The MySQL optimizer is responsible for determining the most efficient way to execute a SQL statement. It evaluates different query execution plans and chooses the one that it estimates will […]

No Picture
DBA

Understanding Latches in MySQL

Understanding Latches in MySQL In MySQL, latches are used to protect shared data structures and ensure consistency in the database. They are used by the storage engine to synchronize access to shared resources such as […]

No Picture
MinervaDB

How to implement Parallelized Vacuum in PostgreSQL 15?

How to implement Parallelized Vacuum in PostgreSQL 15? In PostgreSQL 15, the parallelized vacuum feature allows you to run multiple vacuum processes in parallel, which can significantly improve the performance of the vacuum operation. Here […]

No Picture
Linux

How Queueing influence Linux performance?

How does queueing affect Linux Server performance? In Linux, queueing is implemented using a variety of different tools and mechanisms. Some of the most common tools and mechanisms used for queueing in Linux include: The […]

No Picture
MinervaDB

What’s new with PostgreSQL 15?

PostgreSQL 15 new features  PostgreSQL 15, the latest version of the popular open-source relational database management system, was released on October 3rd, 2021 and it comes with several new features and improvements: Parallelized Vacuum: PostgreSQL […]