Experts in Postgres and Open Source Infrastructure

24x7, 365 Enterprise services since 1997

Education

Professional Postgres and Open Source support

Command Prompt, Inc., is the oldest Postgres Company in North America and one of the oldest Open Source firms still operating today. We serve our clients with best in class expertise and professionalism. You can read more about support and services here:


You have landed at the largest single source of Postgres education blogs in the world. At Command Prompt, we believe deeply that the education of the community is critical to the continued success of Postgres and related technologies. We hope you find content you are looking for and don't hesitate to Contact us today for all your Postgres and Open Source consulting and support needs.

How to Check PostgreSQL Service Status in Linux(Ubuntu)

Execute the “sudo systemctl status postgresql” command to check the PostgreSQL service status on your Linux (Ubuntu) operating system.

How to Check Query History in PostgreSQL?

Run the “\s” command from psql to get query history. To check the query history using pgAdmin, open the “query tool” and navigate to the “Query History” tab.

How to Modify an Array Using Built-in Functions in PostgreSQL

Postgres offers different built-in array functions that are used with the UPDATE command to modify an array, such as ARRAY_PREPEND(), ARRAY_REMOVE(), ARRAY_CAT(), etc.

PostgreSQL INNER JOIN Explained With Examples

In PostgreSQL, the INNER JOIN is used to get the matching results from two or more tables based on a specific join condition.

Check Database Size and Table Size in PostgreSQL Using pgAdmin

In PostgreSQL, built-in functions like pg_relation_size(), pg_database_size(), pg_size_pretty(), etc. are used to get the size of the table or database.

How to Check Current Version, Database, Schema, and User in PostgreSQL

In Postgres, the VERSION(), CURRENT_DATABASE(), CURRENT_SCHEMA, and CURRENT_USER, functions are used to get the current version, database, schema, and user.

How to Reset Forgotten Password For postgres User

To reset a forgotten password for a “postgres” user > open the “pg_hba.config” file located at “C:\Program Files\PostgreSQL\15\data”, and replace the local connections with “trust”.

How to Create User, Create Database, Grant Privileges in PostgreSQL

Execute the “GRANT ALL PRIVILEGES” command to grant all the database privileges to the user, such as creating a database, dropping a database, etc.

How to Update an Array in PostgreSQL

PostgreSQL allows us to update an already existing array using the “UPDATE SET” statement. Specify the array index with the array name to update only a specific element of an array.

How to Uninstall PostgreSQL From Windows

To uninstall Postgres from windows, open control panel > go to programs and features > locate PostgreSQL > Uninstall the PostgreSQL.