Access Oracle database from PostgreSQL using Oracle Foreign Data Wrapper (ORACLE_FDW) 5 (1)

Access Oracle database from PostgreSQL using Oracle Foreign Data Wrapper (ORACLE_FDW) Nowadays many companies are using a mix of RDBMS systems, for example, some instances are running on Oracle and other instances are running on PostgreSQL, and if we want to access data we need to do it using a heterogeneous connection. Heterogeneous connections allow

Loading

Read More

Steps to create a Database Link from Oracle to MySQL 5 (1)

Steps to create a Database Link from Oracle to MySQL Nowadays many companies are using a mix of RDBMS system for example, some instances are running on Oracle and other instances are running on MySQL, and if we want to access data we need to do it using a heterogeneous connection. Heterogeneous connections allow us to query data from non-Oracle databases using SQL. In this blog post we will see How to

Loading

Read More

Setup Logical Replication using pglogical in PostgreSQL 5 (2)

Setup Logical replication using pglogical in PostgreSQL In the recent two blogs, we discuss built-in options like Streaming replication Click here to read more and Logical replication Click here to read more. In this blog, we will use pglogical extension to setup logical streaming replication for PostgreSQL. The pglogical extension provides logical streaming replication for PostgreSQL, using

Loading

Read More

Configure PgBouncer for PostgreSQL 5 (1)

Configure PgBouncer for PostgreSQL PostgreSQL has a heavyweight connection handling architecture. For each incoming connection, the postmaster forks out a new process  called as backend process to handle it. While this design provides better stability and isolation, it does not make it particularly efficient at handling short-lived connections. A new Postgres client connection involves TCP

Loading

Read More