From e38c920dba59a39322a865997e4d33715a6e38a7 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 10 Aug 2005 19:30:05 +0000 Subject: Add new FAQ information. Martijn van Oosterhout --- doc/src/FAQ/FAQ.html | 44 ++++++++++++++++++++++++++++++++++++++------ 1 file changed, 38 insertions(+), 6 deletions(-) (limited to 'doc/src') diff --git a/doc/src/FAQ/FAQ.html b/doc/src/FAQ/FAQ.html index 71e659db94d..07dd956e2ef 100644 --- a/doc/src/FAQ/FAQ.html +++ b/doc/src/FAQ/FAQ.html @@ -10,7 +10,7 @@ alink="#0000ff">
Last updated: Mon May 30 09:11:03 EDT 2005
+Last updated: Wed Aug 10 15:29:42 EDT 2005
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) @@ -26,7 +26,7 @@
PostgreSQL is pronounced Post-Gres-Q-L, also called just - Postgres.
+PostgreSQL is pronounced Post-Gres-Q-L, and is also sometimes + referred to as just Postgres. An audio file is available in + MP3 format for + those would like to hear the pronunciation.
PostgreSQL is an object-relational database system that has the features of traditional commercial database systems with @@ -613,6 +617,12 @@ table?
The maximum table size and maximum number of columns can be quadrupled by increasing the default block size to 32k.
+One limitation is that indexes can not be created on columns + longer than about 2,000 characters. Fortunately, such indexes are + rarely needed. Uniqueness is best guaranteed using another column + that is an MD5 hash of the long column, and full text indexing + allows for searching of words within the column.
+CREATE INDEX tabindex ON tab (lower(col));- +
If the above index is created as UNIQUE, though + the column can store upper and lowercase characters, it can not have + identical values that differ only in case. To force a particular + case to be stored in the column, use a CHECK + constraint or a trigger.
+There are also commercial and hardware-based replication solutions available supporting a variety of replication models.
+ +The most common cause is the use of double-quotes around table or + column names during table creation. When double-quotes are used, + table and column names (called identifiers) are stored case-sensitive, meaning you must use + double-quotes when referencing the names in a query. Some interfaces, + like pgAdmin, automatically double-quote identifiers during table + creation. So, for identifiers to be recognized, you must either: +