Recent Entries 10
- pattern minor 112d agopgAdmin 4 v 7.1 not loading after trying everythingI am having serious problems getting pgAdmin 4 to load. I'm running on Windows 10. Please see attached screenshot. I have naturally tried to troubleshoot this problem myself. I have followed instructions from a google search to change the .js content type to have the value text/javascript in the registry editor and then closed pgadmin and its servers in task manager. Annoyingly I still get the same error message. I previously tried to install postgreSQL about 2 months ago and then deleted it. Could it be that I have somehow caused a problem. I uninstalled postgreSQL by right clicking on it and clicking uninstall. What else coud I try to troubleshoot this problem? Thank you
- pattern minor 112d agoIs pgAdmin adding query time overhead?I just wrote a long question about what I did to optimize a rather simple query that takes much longer than I wish it would. I kept querying with pgAdmin. And then I made the query simpler and simpler until I ended up querying for the primary key of a newly created table with just 1 row in it. ``` create table perf_test (id bigint primary key); ``` and then queried: ``` select count(t.id) from perf_test t where t.id = 1 ; ``` and the message output is: ``` Successfully run. Total query runtime: 66 msec. 1 rows affected. ``` I need to optimize a query that usually takes around 30-40ms when issued from my application. How can I experiment and measure the performance if the execution time in pgAdmin is already much higher for the simplest of all queries?
- snippet minor 112d agoHow do I adjust the table link endpoint in PgAdmin's ERD tool after autogenerating it from an existing database?I can move the lines themselves around, but I can't move the endpoints, which cause the lines to overlap. The only way to understand which relationship is being referenced is by hovering over the connection. A printout of a complex ERD becomes unusable. I can move the tables and the lines themselves, but cannot move the endpoints.
- pattern moderate 112d agoWhat does it mean when a session is highlighted in red in the PgAdmin dashboard?I've noticed sessions being highlighted in red recently though this never occurred in the past which leads me to believe it is a new feature. It appears to only occur on hanging queries. I looked through the PgAdmin documentation as well as change logs for all recent updates but could not find an explanation. Here is an example of how it appears:
- debug minor 112d agohow to fix "your account is locked. please contact admin" issue in postgresql when loginI'm new to PostgreSQL.I'm using postgreSQL locally. I used it last time without any issues. Now, when I try login with my login credentials it shows the account is locked message all the time.
- snippet minor 112d agoHow to take backup of schema postgresql?Hi I am currently using postgresql and deleting some of the tables for testing purpose and I want to take backup of schema. can any one let me know how to do that ?
- debug minor 112d ago"ERROR: column rel.relhasoids does not exist" with PostgreSQL 12 and PgAdmin 4.3I get the following error when trying to select rows from a table: `ERROR: column rel.relhasoids does not exist LINE 1: SELECT rel.relhasoids AS has_oids ` Configuration is: - Linux RHL8 - NAME="Red Hat Enterprise Linux" - VERSION="8.2 (Ootpa)" - postgresql12-server-12.3 - psql (12.3) - PgAdmin 4.3 en 4,5
- pattern minor 112d agoWhat is the last version of postgres with pgadmin 3?For some reason I cant get used to the pgadmin 4 in web version. I found it very slow. For thing I want do fast I rather have pgadmin 3 even if that mean work with previous version of postgres. So what was the last version of postgres with pgadmin 3?
- snippet minor 112d agoAuto-complete in pgAdmin: how to get it to automatically appear?It looks like auto-complete is only activated after hitting ctrl + space https://www.pgadmin.org/docs/pgadmin4/4.12/keyboard_shortcuts.html This is unexpected to me: not quite as "auto" as I would expect an auto-complete feature to be. Is there a way to avoid having to hit ctrl + space to activate auto-complete?
- debug minor 112d agoPGAdmin4 Browser: Autocomplete not workingI am using PGAdmin4 on my Firefox Browser(Mac). I am looking for auto-complete feature but could not get it work. The documentation says that the shortcut for auto complete is "Ctrl+Space" but it does not work. Has anyone figured out how to make it work?