From 860d507b89bbe787054eba3fe3da5018ed22d4c0 Mon Sep 17 00:00:00 2001
From: Bruce Momjian Last updated: Wed Dec 15 20:06:34 EST 2004 Last updated: Fri Dec 24 12:18:49 EST 2004 Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) The most recent version of this document can be viewed at http://www.PostgreSQL.org/docs/faqs/FAQ.html.Frequently Asked Questions (FAQ) for PostgreSQL
-
Platform-specific questions are answered at http://www.PostgreSQL.org/docs/index.html.
+ "http://www.postgresql.org/docs/faq/"> + http://www.postgresql.org/docs/faq/.The authors of PostgreSQL 1.01 were Andrew Yu and Jolly Chen. @@ -339,8 +342,9 @@ href= "http://techdocs.PostgreSQL.org/">http://techdocs.PostgreSQL.org/.
-psql has some nice \d commands to show information about - types, operators, functions, aggregates, etc.
+The command line client program psql has some \d commands to show + information about types, operators, functions, aggregates, etc. - use \? to + display the available commands.
Our web site contains even more documentation.
@@ -398,8 +402,8 @@Visit the PostgreSQL bug form at - http://www.postgresql.org/bugform.html.
+ "http://www.postgresql.org/support/submitbug"> + http://www.postgresql.org/support/submitbug.Also check out our ftp site ftp://ftp.PostgreSQL.org/pub to @@ -425,21 +429,15 @@
Also, if you have a success story about PostgreSQL, please submit - it to our advocacy site at - http://advocacy.postgresql.org.
+Also, if you have a success story about PostgreSQL, please email + it to our advocacy list at + pgsql-advocacy@postgresql.org.
+Yes, there are several graphical interfaces to PostgreSQL available. These include PgAccess - http://www.pgaccess.org), PgAdmin III (), pgAdmin III (http://www.pgadmin.org, RHDB Admin (http://sources.redhat.com/rhdb/ ), TORA (http://www.globecom.net/tora/ @@ -674,9 +672,9 @@ kernel's limit on shared memory space. Each buffer is 8K and the default is 1000 buffers.
-You can also use the sort_mem and work_mem options - to increase the maximum amount of memory used by the backend processes - for each temporary sort. The default is 1024 (i.e. 1MB).
+You can also use the sort_mem (from PostgreSQL 8.0: work_mem) + options to increase the maximum amount of memory used by the backend + processes for each temporary sort. The default is 1024 (i.e. 1MB).
You can also use the CLUSTER command to group data in tables to match an index. See the CLUSTER @@ -1170,14 +1168,14 @@ BYTEA bytea variable-length byte array (null-byte safe) execute("INSERT INTO person (name) VALUES ('Blaise Pascal')"); new_id = execute("SELECT currval('person_id_seq')"); - - Finally, you could use the OID + +
Finally, you could use the OID returned from the INSERT statement to look up the default value, though this is probably the least portable approach, and the oid value will wrap around when it reaches 4 billion. - In Perl, using DBI with Edmund Mergl's DBD::Pg module, the oid - value is made available via $sth->{pg_oid_status} after - $sth->execute(). + In Perl, using DBI with the DBD::Pg module, the oid value is made + available via $sth->{pg_oid_status} after + $sth->execute().