If you notice that there is an error in the PostgreSQL time when you make time-dependent queries in PostgreSQL, you can change it by following …
Read More »PostgreSQL
PostgreSQL Streaming Replication
Master Server / Primary Server Set Up 1. Configuration Changes in file “postgresql.conf“ [crayon-67d4290d59f68652948946/] 2. Configuration Changes in file “pg_hba.conf” Make an entry …
Read More »Foreign Data Wrapper Between PostgreSQL and Oracle
In the article “Postgresql Foreign Data Wrapper“, we created Foreign Data Wrapper to read data between two PostgreSQLs. And we have created Foreing Data …
Read More »How To Install Oracle Client For PostgreSQL On Centos
Oracle_client is required to connect to remote Oracle databases. For Oracle Foreign Data Wrapper, this installation needs to be done as follows. First of …
Read More »make: gcc : Command not found make:*** [oracle_fdw.o] Error 127
Sometimes the standard installation is not sufficient for the extension package you want to install. The reason for this is that the extension has …
Read More »Oracle_fdw oracle_utils.c:22:17: fatal error: oci.h: No such file or directory
When you run the make command when installing Oracle_fdw, you may encounter the error as follows. The reason for this error is that the …
Read More »Universal Unique İdentifier (UUID) Data Type In PostgreSQL
Uuid is the abbreviation for “universal unique identifier”. It consists of 36 characters, a set of numbers and letters, and its most important feature …
Read More »How to Change the Schema Name in PostgreSQL
We may want to change the schema name because of some needs. For this we can use the following script. First, we list the schemes …
Read More »PostgreSQL – List the connections from the IP block
One of the useful data types of PostgreSQL is the inet data type. inet is used to define IPv4 and IPv6 addresses. The ip address …
Read More »How To Find and Kill Long Running Queries In PostgreSQL
You can use the following queries to monitor the performance of the database or to find and kill queries that cause lock. The following …
Read More »