Install PL/Java in PostgreSQL 11
Published on Sun, Mar 31, 2019

Refer to the article posted on the community blog Install PL/Java in PostgreSQL 11. –Raghav Continue reading →

A Real Integration: EDB Failover Manager and PgPool for High-Availability
Published on Wed, Nov 7, 2018

Refer to the article I have posted on EDB Postgres Rocks forum on A Real Integration: EDB Failover Manager and PgPool for High-Availability Short video on Youtube https://youtu.be/pgZJiXa3SoY –Raghav Continue reading →

Upgrade Existing EDB Failover Manager 3.1 cluster to EFM 3.2. Explained in 5 Steps
Published on Thu, Oct 11, 2018

Refer to the article I have posted on EDB Postgres Rocks forum on Upgrade Existing EDB Failover Manager 3.1 cluster to EFM 3.2. Explained in 5 Steps –Raghav Continue reading →

Validating JSON data type column in PostgreSQL
Published on Thu, Aug 23, 2018

In this post, we see how to validate the JSON/JSONB data type column in PostgreSQL 10. Most of the basic JSON/JSONB validation has been taken care in core of PostgreSQL itself, however you may have a requirement to validate the JSON format elements data types while inserting. For such requirements, you need to write a Pl/PgSQL function to validate the JSON data when accepting it in JSON/JSONB column in a CHECK constraint. Continue reading →

Configure Streaming Replication in PostgreSQL 10
Published on Sun, Jul 22, 2018

In this post, we configure Streaming Replication between One Master and 2 Standbys(Standby 1/Standby 2). Replication will be 1:1 but not cascading. Below are my setup details OS - RedHat Enterprise Linux 7.x Master IP - 172.31.34.34 Standby 1 IP - 172.31.32.122 Standby 2 IP - 172.31.41.249 Installation Today www.postgresql.org distributes binaries in different formats contributed by many companies. For this setup, am going to use YUM method of installation as shown in the main website link here. Continue reading →