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.

PL/pgSQL Row Types - Assign Complete Row to a Variable in PostgreSQL

In PL/pgSQL, the row-type variables aka row variables are used to store a complete record of a result set into a specific variable.

How to Restart PostgreSQL Server on Linux

The Postgres server can be restarted using the “/etc/init.d/postgresql restart” or “sudo systemctl restart postgresql” commands.

How Does the CEILING() Function Work in PostgreSQL?

In Postgres, CEILING() is a built-in math function that accepts a numeric or double precision value and converts it into the nearest integer toward the positive infinity.

How to Install PostgreSQL on CentOS?

To install PostgreSQL on CentOS, execute the “sudo yum install postgresql-server postgresql-contrib” script.

How to Use CARDINALITY() Function in PostgreSQL?

In PostgreSQL, CARDINALITY() is an array function that counts the total number of array elements. The return type of the stated function is INT.

How to Restart PostgreSQL Server on Windows

In PostgreSQL, the “pg_ctl” command and “services manager” can be used to restart the Postgres server on the Windows operating system.

How to Lock or Unlock a PostgreSQL User

To lock a Postgres user, the “ALTER USER” statement can be used with the “NOLOGIN” clause. While a user can be unlocked by using the “ALTER USER” command with the “LOGIN” attribute.

How to Check if a User is Connected to the PostgreSQL Server or Not

In Postgres, to check the active users via the “pg_stat_activity”, use the “SELECT usename, datname, state FROM pg_stat_activity WHERE usename='user_name';” command.

How to Grant Permissions on all Tables to a PostgreSQL User

In PostgreSQL, the GRANT statement is utilized along with the “ON ALL TABLES” clause to assign permissions on all tables to single or multiple users.

How to Change the Table Owner in PostgreSQL

To change or modify the table’s owner in PostgreSQL, use the “ALTER TABLE tab_name OWNER TO new_owner_name;” command.