Top "Postgresql-11" questions

For PostgreSQL questions specific to version 11.

FATAL: password authentication failed for user "postgres" (postgresql 11 with pgAdmin 4)

I recently installed Postgresql 11, during the installation, there's no step to put password and username for Postgres. Now in pgAdmin 4, …

postgresql pgadmin-4 postgresql-11
I can't start server PostgreSQL 11: "pg_ctl: could not start server"

I am in CentOS Linux release 7.5.1804 (Core) When I login as postgres and run: bash-4.2$ /usr/pgsql-11/bin/initdb -D /…

postgresql centos7 postgresql-11
Function uuid_generate_v4() does not exist postgres 11

I am trying to use node-pg-migrate and run migrations to create tables in my node project. When I run migrations …

postgresql postgresql-11
How to return result set from PostgreSQL stored procedure?

PostgreSQL supports stored procedure (not function) since version 11. I created a stored procedure like this: CREATE OR REPLACE PROCEDURE get_…

postgresql postgresql-11
"ERROR: invalid transaction termination" when trying to execute a procedure with nested transaction control

According to the documentation (https://www.postgresql.org/docs/current/app-psql.html), even with AUTOCOMMIT set to off, PSQL issues …

postgresql transactions plpgsql commit postgresql-11
How to fix 'postgres.h' file not found problem?

I am trying to write a base type for PostgreSQL in C (using xcode), and I already installed PostgreSQL 11, but …

c postgresql postgresql-11
How to get result set from PostgreSQL stored procedure?

I created a stored procedure in PostgreSQL 11 to perform CRUD operation, and it works fine for 1. Create 2. Update 3. Delete, but …

postgresql function stored-procedures postgresql-11
Partition by date range PostgreSQL scans all partitions

I have a table partitioned per month (timestamp column). when querying the data, explain shows that all partitions are being …

postgresql database-partitioning postgresql-11
PostgreSQL 11 foreign key on partitioning tables

In the PostgreSQL 11 Release Notes I found the following improvements to partitioning functionality: Add support for PRIMARY KEY, FOREIGN KEY, …

database-partitioning postgresql-11