Re: [pgadmin-support] Remote Server Connection Problem

2007-11-22 Thread rod
[EMAIL PROTECTED] wrote: > Error connecting to the server: FATAL: no pg_hba.conf entry > for host "138.250.104.229", user "globus", database > "rftDatabase", SSL off > > 138.250.104.229 is the IP for the local server, 138.250.104.232 > is the IP of the remote server, but is not showing it in the >

Re: [pgadmin-support] PG-Admin3 1.8 Beta 2 Error - I can't see my Aggregate Functions

2007-10-08 Thread rod
>I'm testing the Beta 2 of PG-Admin 1.8 and I have the >Problem that I >cannot see my aggregate functions. >In the 1.6.3 I could see them direct >under the public schema, but in the 1.8 I don't >have that section. Check that they're made visible, under File -> Options -> Display tab (this is new

Re: [pgadmin-support] [pgadmin-hackers] Table fragmentation?

2003-06-12 Thread Rod Taylor
rly as big of a performance gain by splitting your index up. Take a look at partial indexes (with the WHERE clause). http://www.postgresql.org/docs/view.php?version=7.3&idoc=1&file=sql-createindex.html -- Rod Taylor <[EMAIL PROTECTED]> PGP Key: http://www.rbt.ca/rbtpub.asc signatu

Re: [pgadmin-support] limiting the number of rows displayed

2002-08-26 Thread Rod Taylor
> Hi Karim, > > Currently there is no way to do this other than enter the SQL yourself > with a 'LIMIT nnn' on the end of the query. It might be handy though, so > I'll add it to the todo list. MSAccess does this decently. They use a cursor, pull out 100 entries by default, then when you scrol

Re: [pgadmin-support] Problems viewing a table called "user" in

2002-08-13 Thread Rod Taylor
This would cost an extra query for every query, but you could let the DB manage it with: select quote_ident('user'); Just pile on all of the identifiers into a list and use the results for the real query. This way it'll work across all versions of Postgresql as well as future ones without any

Re: [pgadmin-support] [pgadmin-hackers] RFC: Removal of Revision Control

2002-05-01 Thread Rod Taylor
arbitrary text file against a database connection. This would preserve most of the functionality and should be straight forward to implement. The only catch is it shouldn't have the select queries in it which the PGAdmin uses to determine structure. -- Rod - Original Message - From:

User Log?

2002-01-12 Thread Rod Taylor
to confirm it can be applied after editing. As a side note, I still need to be able to cut & paste the SQL generated for the purposes of a change control report. Currently this can almost be done with the logging when you grep out all of the selects (99.9% of the time it's pgAdmin doing it&

Highlight bug in 1.1.76-DEV

2002-01-12 Thread Rod Taylor
When clicking on a table with a comment (definition pane shows how to create the item), data within ' ' will be highlighted as well if it matches (see below). The word 'by' will be green. COMMENT ON TABLE "action" IS 'Actions in queue to be services by th