If you don’t use PG ADMIN or any other similar application and you want to see the data type in the columns of the …
Read More »Faruk Erdem
Solution of Makefile54 Error On PostgreSQL
You may receive an error as follows when you try to install a different extension package that is not in Postgresql’s repo. To solve …
Read More »How To Install PostgreSQL On centos/redhat
First we go to https://yum.postgresql.org and into PostgreSQL where we will download the repo. Since we will install PostgreSQL 10 in our example, we will …
Read More »PostgreSQL DBLINK
In this article I will describe how to connect to remote PostgreSQL database with PostgreSQL dblink. Dblink usage is similar to other databases. but …
Read More »How To Use Between Command On PostgreSQL
You can use the between command (including the first and last value) to read the data between the two values in the table in …
Read More »How To Move a Table On PostgreSQL
Sometimes we may want to create the same table in a database without the data in it by using a different name or we …
Read More »Running an Operating System Command while Connected to Postgres
You are processing in psql, but you need to look at something on the operating system side, so you must exit from the psql …
Read More »How To List Tablespaces and Objects in Tablespaces On PostgreSQL
You can use the following command to see the list of tablespaces created. [crayon-64290eb4efbb5789546311/] You can also use the following script to list …
Read More »How To Encrypt a Column(Like Password) with chkpass On PostgreSQL
We may need to keep passwords in databases for some reason, and we don’t want anyone to see them, including dba. In postgresql there …
Read More »