The pgadmin tag has no wiki summary.
49
votes
2answers
2k views
Debug PostgreSQL function using pgAdmin
I refer this to enable the debugger in the PostgreSQL server in order to debugging the plpgsql function by stepping through the codes using the pgadmin.
I have already set shared_preload_libraries ...
3
votes
2answers
856 views
PostgreSQL pg_hba.conf Issue
In pg_hba.conf, I have
host all all 127.0.0.1/32 md5
host all all samenet md5
I also added
host all all ...
1
vote
2answers
39 views
How to mass replace structure in PostgreSQL database schema?
I'm hoping a PostgreSQL expert can help out with this one ;) To avoid liability problems we've been asked to replace all instances of the word "patient" with "client" in our database schema. We do, ...
1
vote
2answers
96 views
PostgreSQL how to see which queries has run
I have a PostgreSQL DD at my computer and I have an application that runs queries on it. How can I see which queries has run at my DB? I use a Linux computer and pgadmin.
1
vote
2answers
99 views
PostgreSQL - How to create a new DB through PGAdmin ||| UI?
I have installed PostgreSQL DB server on my Ubuntu machine. Now I want to create a new Database through some GUI application. I tried PGAdmin III but didn't find any option to create a new DB. But I ...
1
vote
1answer
108 views
PgAdmin search in all tables
In PgAdmin, is it possible to search for a value in ALL tables? In phpmyadmin this is possible and quite convenient. You search for an ID value and find all the tables in which it occurs. I can't seem ...
1
vote
1answer
158 views
Can’t see user-defined database “types" in PgAdmin
Is there a graphical way to create/manipulate/view special database types in PgAdmin?
For example, in PostgreSQL we have:
CREATE TYPE compfoo AS (f1 int, f2 text);
I’ve noticed PgAdmin almost shows ...
1
vote
1answer
113 views
Literal parentheses in postgres query, pgadmin vs. psycopg2
The following query takes out the parentheses from a string, i.e. it regex replaces them with nothing. It works as expected when I test it in pgAdimin III (1.12), but when part of a python script ...
1
vote
1answer
187 views
Restart PostgreSQL Remotely
Can I remotely restart a PostgreSQL server throught PGAdmin ? The user I currently is the administrative privileges.
Regards,
Dino
1
vote
2answers
297 views
Is there an easy way to view data in PgAdmin (PostgreSQL)
I have searched this problem for more than an hour without any clue. In Heidi SQL (for MySQL), I just need few clicks to open any table to view its data. But in pgAdmin, I must collapse many ...
0
votes
0answers
14 views
How do I restore a plain text postgres .backup file [migrated]
I exported a postgres db from pgAdmin in a plain format because I wanted to search the whole db text. I then tried to restore the database back but it gives an error saying that the archive file is ...
0
votes
1answer
21 views
postgres psql giving permission denied but I can use pgadmin ok
I get
psql: could not connect to server: Permission denied
Is the server running locally and accepting
connections on Unix domain socket "/var/pgsql_socket/.s.PGSQL.5432"?
but if I use ...
0
votes
1answer
84 views
How to print the table structure from postgresql?
I am using phpPgAdmin in the browser and PgAdmin III for Windows. Is there anyway to take the printout of the table structure for the entire database?
0
votes
1answer
56 views
Why does pgAdmin 3 show two servers on localhost when there are none? [closed]
On OSX, this is driving me nuts (though admittedly it's rather trivial). pgAdmin (1.14.0) is showing two servers (8.4 and 9.0) on localhost:5432, thought there are no instances of Postgres running, ...