From 97a4dad35fcc00f530f35fe99ae9d3db74f5c8cc Mon Sep 17 00:00:00 2001
From: Bruce Momjian Last updated: Sat Apr 23 14:56:41 EDT 2005 Last updated: Sat Apr 23 14:59:01 EDT 2005 Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
@@ -133,7 +133,7 @@
PostgreSQL is pronounced Post-Gres-Q-L, also called just
Postgres.Frequently Asked Questions (FAQ) for PostgreSQL
- General Questions
- 1.1) What is PostgreSQL? How is it pronounced?
+ 1.1) What is PostgreSQL? How is it pronounced?
PostgreSQL is distributed under the classic BSD license. It has no restrictions on how the source code can be used. We like it and @@ -185,7 +185,7 @@ UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-In general, any modern Unix-compatible platform should be able to run PostgreSQL. The platforms that had received explicit testing at @@ -204,14 +204,14 @@ "http://hobbes.nmsu.edu/cgi-bin/h-search?sh=1&button=Search&key=postgreSQL&stype=all&sort=type&dir=%2F"> http://hobbes.nmsu.edu/cgi-bin/h-search?sh=1&button=Search&key=postgreSQL&stype=all&sort=type&dir=%2F.
-Via web browser, use http://www.postgresql.org/ftp/, and via ftp, use ftp://ftp.PostgreSQL.org/pub/.
-The PostgreSQL community provides assistance to many of its users via email. The main web site to subscribe to the email lists is @@ -230,7 +230,7 @@ "http://techdocs.postgresql.org/companies.php"> http://techdocs.postgresql.org/companies.php.
-Visit the PostgreSQL bug form at @@ -240,14 +240,14 @@ "ftp://ftp.PostgreSQL.org/pub/">ftp://ftp.PostgreSQL.org/pub/ to see if there is a more recent PostgreSQL version.
-The latest release of PostgreSQL is version 8.0.2.
We plan to have a major release every year, with minor releases every few months.
-PostgreSQL includes extensive documentation, including a large manual, manual pages, and some test examples. See the /doc @@ -272,15 +272,15 @@
Our web site contains even more documentation.
-PostgreSQL supports an extended subset of SQL-92. See our TODO list for known bugs, missing features, and future plans.
-First, consider the PostgreSQL-specific books mentioned above. Another one is "Teach Yourself SQL in 21 Days, Second Edition" @@ -298,14 +298,14 @@ and at http://sqlcourse.com.
-See the Developer's FAQ. -
There are several ways of measuring software: features, performance, reliability, support, and price.
@@ -368,8 +368,8 @@The PostgreSQL install includes only the C and embedded C interfaces. All other interfaces are independent projects @@ -383,8 +383,8 @@ in the Drivers/Interfaces section and via Internet search.
-A nice introduction to Database-backed Web pages can be seen at: http://www.webreview.com
@@ -396,8 +396,8 @@For complex cases, many use the Perl and DBD::Pg with CGI.pm or mod_perl.
-Yes, see http://techdocs.postgresql.org/guides/GUITools for a @@ -408,14 +408,14 @@
Specify the --prefix option when running configure.
-By default, PostgreSQL only allows connections from the local machine using Unix domain sockets or TCP/IP connections. Other @@ -424,8 +424,8 @@ host-based authentication by modifying the $PGDATA/pg_hba.conf file, and restart the server.
-There are three major areas for potential performance improvement:
@@ -481,15 +481,15 @@ -There are many log_*
server configuration variables
that enable printing of query and process statistics which can be
very useful for debugging and performance measurements.
You have reached the default limit is 100 database sessions. You need to increase the postmaster's limit on how many @@ -497,8 +497,8 @@ max_connections value in postgresql.conf and restarting the postmaster.
-The PostgreSQL team makes only small changes between minor releases, so upgrading from 7.4.0 to 7.4.1 does not require a dump and restore. @@ -508,7 +508,7 @@ data in a generic format that can then be loaded in using the new internal format.
-Because PC hardware is mostly compatible, people tend to believe that all PC hardware is of equal quality. It is not. ECC RAM, SCSI, and @@ -522,8 +522,8 @@
To retrieve only a few rows, if you know at the number of rows needed at the time of the SELECT use @@ -541,9 +541,9 @@ LIMIT 1; -
Use the \dt command to see tables in psql. For a complete list of commands inside psql you can use \?. Alternatively you can read the source @@ -564,7 +564,7 @@ illustrates many of the SELECTs needed to get information from the database system tables.
-Changing the data type of a column can be done easily in 8.0 and later with ALTER TABLE ALTER COLUMN TYPE.
@@ -580,8 +580,8 @@You might then want to do VACUUM FULL tab to reclaim the disk space used by the expired rows.
-These are the limits:
@@ -611,8 +611,8 @@ table?unlimited The maximum table size and maximum number of columns can be quadrupled by increasing the default block size to 32k.
-4.5) How much database disk space is required - to store data from a typical text file?
+4.5) How much database disk space is required + to store data from a typical text file?
A PostgreSQL database may require up to five times the disk space to store data from a text file.
@@ -648,8 +648,8 @@ table?unlimited NULLs are stored as bitmaps, so they use very little space.
-4.6) Why are my queries slow? Why don't they - use my indexes?
+4.6) Why are my queries slow? Why don't they + use my indexes?
Indexes are not used by every query. Indexes are used only if the table is larger than a minimum size, and the query selects only a @@ -712,14 +712,14 @@ table?
unlimited types exactly match the index's column types. This was particularly true of int2, int8, and numeric column indexes. -4.7) How do I see how the query optimizer is - evaluating my query?
+4.7) How do I see how the query optimizer is + evaluating my query?
See the EXPLAIN manual page.
-4.8) How do I perform regular expression +
+ use an index for case-insensitive searches?4.8) How do I perform regular expression searches and case-insensitive regular expression searches? How do I - use an index for case-insensitive searches?
The ~ operator does regular expression matching, and ~* does case-insensitive regular expression matching. The @@ -740,9 +740,9 @@ table?
unlimited CREATE INDEX tabindex ON tab (lower(col)); -4.9) In a query, how do I detect if a field +
+ NULL or not?4.9) In a query, how do I detect if a field is NULL? How can I sort on whether a field is - NULL or not?
You test the column with IS NULL and IS NOT NULL.
@@ -764,8 +764,8 @@ table?unlimited ORDER BY (col IS NOT NULL) -4.10) What is the difference between the - various character types?
+4.10) What is the difference between the + various character types?
@@ -801,8 +801,8 @@ length particularly values that include NULL bytes. All the types described here have similar performance characteristics. - Type Internal Name Notes 4.11.1) How do I create a - serial/auto-incrementing field?
+4.11.1) How do I create a + serial/auto-incrementing field?
PostgreSQL supports a SERIAL data type. It auto-creates a sequence. For example, @@ -826,8 +826,8 @@ length See the create_sequence manual page for more information about sequences. -
4.11.2) How do I get the value of a - SERIAL insert?
+4.11.2) How do I get the value of a + SERIAL insert?
One approach is to retrieve the next SERIAL value from the sequence object with the nextval() function @@ -855,23 +855,23 @@ length new_id = execute("SELECT currval('person_id_seq')"); -
4.11.3) Doesn't currval() - lead to a race condition with other users?
+4.11.3) Doesn't currval() + lead to a race condition with other users?
No. currval() returns the current value assigned by your session, not by all sessions.
-4.11.4) Why aren't my sequence numbers +
+ my sequence/SERIAL column?4.11.4) Why aren't my sequence numbers reused on transaction abort? Why are there gaps in the numbering of - my sequence/SERIAL column?
To improve concurrency, sequence values are given out to running transactions as needed and are not locked until the transaction completes. This causes gaps in numbering from aborted transactions.
-4.12) What is an OID? What is - a TID?
+4.12) What is an OID? What is + a TID?
Every row that is created in PostgreSQL gets a unique OID unless created WITHOUT OIDS. @@ -893,8 +893,8 @@ length are modified or reloaded. They are used by index entries to point to physical rows.
-4.13) Why do I get the error "ERROR: - Memory exhausted in AllocSetAlloc()"?
+4.13) Why do I get the error "ERROR: + Memory exhausted in AllocSetAlloc()"?
You probably have run out of virtual memory on your system, or your kernel has a low limit for certain resources. Try this @@ -912,13 +912,13 @@ length backend is returning too much data, try it before starting the client. -
4.14) How do I tell what PostgreSQL version - I am running?
+4.14) How do I tell what PostgreSQL version + I am running?
From psql, type
-SELECT version();
4.15) Why does my large-object operations - get "invalid large obj descriptor"?
+4.15) Why does my large-object operations + get "invalid large obj descriptor"?
You need to put
BEGIN WORK
andCOMMIT
around any use of a large object handle, that is, surrounding @@ -933,15 +933,15 @@ lengthIf you are using a client interface like ODBC you may need to set
-auto-commit off.
4.16) How do I create a column that will - default to the current time?
+4.16) How do I create a column that will + default to the current time?
Use CURRENT_TIMESTAMP:
CREATE TABLE test (x int, modtime TIMESTAMP DEFAULT CURRENT_TIMESTAMP );-4.17) How do I perform an outer join?
+4.17) How do I perform an outer join?
PostgreSQL supports outer joins using the SQL standard syntax. Here are two examples:
@@ -964,8 +964,8 @@ length RIGHT, and FULL joins. Ordinary joins are called INNER joins. -4.18) How do I perform queries using - multiple databases?
+4.18) How do I perform queries using + multiple databases?
There is no way to query a database other than the current one. Because PostgreSQL loads database-specific system catalogs, it is @@ -976,16 +976,16 @@ length connections to different databases and merge the results on the client side.
-4.19) How do I return multiple rows or - columns from a function?
+4.19) How do I return multiple rows or + columns from a function?
It is easy using set-returning functions, http://techdocs.postgresql.org/guides/SetReturningFunctions
. -4.20) Why do I get "relation with OID ##### +
+ functions?4.20) Why do I get "relation with OID ##### does not exist" errors when accessing temporary tables in PL/PgSQL - functions?
PL/PgSQL caches function scripts, and an unfortunate side effect is that if a PL/PgSQL function accesses a temporary table, and that @@ -995,8 +995,8 @@ length EXECUTE for temporary table access in PL/PgSQL. This will cause the query to be reparsed every time.
-4.21) What encryption options are available? -
+4.21) What encryption options are available? +
- contrib/pgcrypto contains many encryption functions for use in SQL queries.
@@ -1016,21 +1016,21 @@ lengthExtending PostgreSQL
-5.1) I wrote a user-defined function. When I - run it in psql, why does it dump core?
+5.1) I wrote a user-defined function. When I + run it in psql, why does it dump core?
The problem could be a number of things. Try testing your user-defined function in a stand-alone test program first.
-5.2) How can I contribute some nifty new - types and functions to PostgreSQL?
+5.2) How can I contribute some nifty new + types and functions to PostgreSQL?
Send your extensions to the pgsql-hackers mailing list, and they will eventually end up in the contrib/ subdirectory.
-5.3) How do I write a C function to return a - tuple?
+5.3) How do I write a C function to return a + tuple?
In versions of PostgreSQL beginning with 7.3, table-returning functions are fully supported in C, PL/PgSQL, and SQL. See the @@ -1038,8 +1038,8 @@ length table-returning function defined in C can be found in contrib/tablefunc.
-5.4) I have changed a source file. Why does - the recompile not see the change?
+5.4) I have changed a source file. Why does + the recompile not see the change?
The Makefiles do not have the proper dependencies for include files. You have to do a make clean and then another -- cgit v1.2.3