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
Thats fair. The ability to rollback most changes isn't overly useful. What is useful is the ability to replay commands on another database. I suggest a good replacement would be a simple 'log' mode which writes text based queries to a log file. PGAdmin should be able to play an arbitrary text f

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