I have a Postgres 9.6 installation on a developer pc and a restore seems to have failed. Even after reinstalling (remove Postgres and PgAdmin completely, incl. database and installed new version) the boxes are popping up (even though these tables do not even exist anymore). How to remove these scheduled jobs? Is there an SQL statement to stop these and cleanup the queue? Both jobs are running endless (3000000s+ already).

enter image description here

有帮助吗?

解决方案

The file

C:\Users...\AppData\Roaming\pgAdmin\pgadmin4.db

is an sqlite-database.

Open it (e.g. with https://sqlitebrowser.org/) and delete all rows in the process table. Then restart pgAdmin - the boxes should be gone.

其他提示

Found solution: This problem is related to the pgadmin.db. Just remove the file and the error is gone (but you also have to reenter all passwords etc.). The problem is that this file is not removed when uninstalling postgres/pgadmin. It can be found in

C:\Users\\AppData\Roaming\pgAdmin

许可以下: CC-BY-SA归因
不隶属于 dba.stackexchange
scroll top