Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
533 views

Debugging SQL in PGAdmin3 when sql contains variables

In SQL Server I could copy sql code out of an application and paste it into SSMS, declare & assign vars that exist in the sql and run.. yay great debugging scenario. e.g. (please note I am rusty ...
3
votes
2answers
2k views

Howto set sequence as default value via pgAdmin?

I have a posgreSQL database and I am using pgAdmin III to work with it.I created a sequence called primaryKeySequence. Now I want to use this sequence as the default value for a primary key field in ...
3
votes
2answers
3k views

unable to connect postgresql remote database by using pgadmin

Hi all i install postgre on my localserver(ubuntu) with ip 192.168.1.10 and now try to access the database from my client machine(ubuntu) with ip 192.168.1.11 by pgadmin please guide me....actually ...
2
votes
1answer
225 views

pgAdmin III - When trying to make a foreign key “referencing” gives no options

I have three tables: ModelingAgency.clients, ModelingAgency.models, ModelingAgency.Bookings. All three tables have a primary key column called id. The table bookings has two columns that reference ...
1
vote
2answers
33 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
1answer
991 views

How do I export a CREATE script for a database from pgAdmin III

Say I've created a database in pgAdmin III, but I want to export a CREATE sql file. How would I go about generating the dump. Thanks in advanced!
1
vote
1answer
219 views

Temporary table in pgAdmin III

I am using pgAdmin III for my Postgres 8.4 database and I was wondering where (any table/schema/etc. ?) may I find a list of currently used temporary tables? I assume there has to be a place where I ...
1
vote
1answer
218 views

PSQL = fast, remote sql = v.slow

Okay, I appreciate that the question is a tad vague, but after a day of googling, I'm getting nowhere, any help will be appreciated, and I'm willing to try anything. The issue is that we have a ...
1
vote
1answer
181 views

DBI's column_info vs. pgAdminIII on quoted identifiers

I have a table in my pgsql database with columns named "type", "desc", and "start". When I call $dbh->column_info, only "desc" comes back quoted, whereas in pgAdmin3 all three of them are quoted. ...
0
votes
0answers
137 views

Access remote postgres server with pgAdmin3

I've got pgAdminIII running on my xp machine. There's a Centos machine running a postgres server on the network. The postgres server pg_hba.conf file has the following lines TYPE DATABASE ...
0
votes
1answer
116 views

pgAdmin III Server Not Showing Up [closed]

Total n00b question here. I am using pgAdmin III to attempt to administer a remote PostgreSQL server. I click the connect icon, fill out the form, click 'OK'. The form goes away and in the status bar ...
0
votes
1answer
99 views

Tab character when exporting in pgAdmin 3

I issue a query in pgAdmin 3 and then want to export the result to a file. How can I specify that the column separator should be a tab character?
0
votes
1answer
489 views

How do I change the maintenance database for Postgres?

I'm running PostgreSQL version 9.0 on OSX version 10.6.6. Somehow one of my development databases has become the maintenance db, not postgres (this db also exists). I can't find any documentation on ...
0
votes
1answer
254 views

PostgreSQL - How to see Function Text/Source in pgAdmin?

I want to be able to SELECT the code of a Function. When I try this Query: select prosrc from pg_proc where proname = 'my_proc' I get an empty column. The thing is, it seems column prosrc does ...
0
votes
2answers
192 views

Trying to create an Insert function

I'm trying to create a function in Postgres 8.4 using pgAdmin and I have the following code CREATE OR REPLACE FUNCTION spcwriteperson(IN fname varchar(20)) RETURNS VOID AS $BODY$ INSERT INTO ...
0
votes
2answers
401 views

Connecting to Rails App Postgres DB using PgAdmin III

I'm having trouble connecting to the database for my rails app using pgAdmin III. I have the server running and I believe that my server properties are correct in pgAdmin III. Here's what I have in ...
0
votes
3answers
338 views

WITH statement not working in Postgresql

I have the following SQL Query which I run in PgAdmin: WITH TABLE1 AS ( SELECT int1, int2, int3 FROM atbl ) SELECT int1, <complex computation involving a large number of values of int2 and int3 ...
0
votes
2answers
434 views

Password in postgres 8.3 not working

i have installed postgres 8.3, i entered test as the password while the installation...my problem is that each time i try to access the local database...each time i enter the password...it say ...
0
votes
1answer
172 views

Is pl/pgsql debugging broken in PostgreSQL 9.0, or is it just me?

I had the debugger working in pgAdminIII at one point, some time before upgrading to 9.0, but as of right now I can't seem to get it working using the usual steps. I believe it may have something to ...
0
votes
1answer
40 views

tinyows fid returned as table_name.null?

i am trying to use tinyows for wfs-t in my app along with openlayers and postgis. i am using osm tables and myown tables for storing geom. tinyows working fine with osm tales, but returning ...
0
votes
1answer
90 views

PGAdmin3 - Sharing DB Connection Definitions

I have a few database servers and few developers. I have set-up database connection definitions on my PC for each servers and now I want to share with other developers but I was not sure how to export ...
0
votes
1answer
238 views

Creating tables in pgadmin sql editor?

I am failing in creating tables via the PGadmin III SQL editor - even if the syntax is generated by the frontend: CREATE TABLE testtable ( id integer, "name" character varying(100) ) WITH ( ...
0
votes
3answers
1k views

View error in PostgreSQL

I have a large query in a PostgreSQL database. The Query is something like this: SELECT * FROM table1, table2, ... WHERE table1.id = table2.id... When I run this query as a sql query, the it ...