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 Sequence Details in PostgreSQL

In PostgreSQL, the “\d” command and “information_schema.sequences” are used to describe a specific sequence.

How to Find Maximum and Minimum Values From a PostgreSQL Table

In PostgreSQL, the MIN() and MAX() functions can be utilized to retrieve the minimum and maximum values among the list of given values.

How to Upgrade PostgreSQL on CentOS 7?

To Upgrade PostgreSQL on CentOS 7, add the appropriate repository, stop PostgreSQL, upgrade PostgreSQL, restart PostgreSQL, verify the upgrade, and test the application compatibility.

How to Fix “nextval: reached maximum value of sequence” Error in PostgreSQL

In PostgreSQL, a commonly faced error “nextval: reached maximum value” error occurs when a sequence reaches its maximum value and the user is still trying to generate a new value.

How to Query Data From a Specific Table in PostgreSQL

To query data from a PostgreSQL table, open SQL Shell, and execute the “SELECT *” command followed by the table name.

How to Resolve “MINVALUE must be less than MAXVALUE” Error in PostgreSQL

In PostgreSQL, the “MINVALUE must be less than MAXVALUE” error can be resolved by increasing the value of the “MAXVLAUE” option and decreasing the value of the “MINVALUE” option or both at the same time.

How to Pause Query Execution in PostgreSQL

In PostgreSQL, various in-built functions like pg_sleep(), pg_sleep_until(), and pg_sleep_for() are used to pause or delay the query’s execution for a specific period.

How to Get Query Results as a Comma Separated List in PostgreSQL

The PostgreSQL users can transform a string or a query result into a comma-separated list using a built-in aggregate function named STRING_AGG().

What are the Steps to Restart the PostgreSQL Server on CentOS 7

To restart the PostgreSQL server on CentOS 7, execute the “sudo systemctl restart postgresql” command. It is recommended to periodically restart the PostgreSQL server.

How to Create Updatable Views in PostgreSQL

Any view that has at least one updatable column is referred to as an updatable view. An updatable view can have updatable as well as non-updatable columns.