CentOS Linux 7.7.1908
pgadmin4 4.17-1.rhel7
After updating to the latest PGAdmin (which previously worked fine), I get a
500 error, due to PGAdmin not being able to load flask-compress (which I guess
is newly included). Looking at the repo, the PGAdmin packages are Python 2.7,
but Flask-Compres
Follow up: I took the SQL generated by the backup command (visible when
looking at the "More details..." of the running backup job), and ran it
directly on the server, and the backup took up about a minute (rather than
failing after 15 hours).
So I have a solution, but how is it that running the b
Hi all,
I'm attempting to back up some databases, but they keep failing after many
hours with an "exit code: 1".
I've tried format "Plain" and "Tar". I'm using UTF8 encoding. I'm
accepting all the default dump options with the exception of additionally
enabling the "Include CREATE DATABASE com
Hello,
i started writing a console interface for the pldebugger and come across some
issues with the pldebugger extension and postgresql 12.1;
with postgresql 9.6.16 and this basic example, i get what i would expect:
Setup:
CREATE EXTENSION pldbgapi;
CREATE TABLE b( a int );
CR