ROOT User Approach – How to Install and Configure PostgreSQL 13 in UBUNTU 14

How to install PostgreSQL 13 in UBUNTU From Repository PostgreSQL can be installed by means of two ways Installing from source Installing binary packages Each method has its own advantages and disadvantages, however, we will limit this post to learn how to install PostgreSQL using binaries packages. Follow the steps here to get the automated … Read more

ROOT User Approach – How to Install and Configure PostgreSQL 13 in RHEL 7 –

How to install PostgreSQL 13 in REHL 7 From Repository PostgreSQL can be installed by means of two ways Installing from source Installing binary packages Each method has its own advantages and disadvantages, however, we will limit this post to learn how to install PostgreSQL using binaries packages. Follow the steps here to get the … Read more

PostgreSQL 13 – New Features [Master Guide]

PostgreSQL 13

PostgreSQL 13 Beta 1 has been released for testing. postgres=# show server_version_num; server_version_num ——————– 130000 (1 row) PostgreSQL 13 New Features More than 160 new features have been added in PostgreSQL 13 compared to its previous versions. This is a multi-post series on PostgreSQL 13 NF, so I would recommend you to subscribe to the … Read more

PostgreSQL 13 New Feature – Drop Database

postgresql-13-drop-database

Drop Database in PostgreSQL 13 Warning: The information provided here is based on unsupported development version of PostgreSQL 13. DROP DATABASE drops a database. It removes the catalog entries for the database and deletes the directory containing the data. It can only be executed by the database owner. It cannot be executed while you are … Read more