@@ -103,15 +103,15 @@ <H2>Operational Questions</H2>
103103 database?< BR >
104104< A href ="#4.7 "> 4.7</ A > ) How much database disk space is required
105105 to store data from a typical text file?< BR >
106- < A href ="#4.8 "> 4.8</ A > ) How do I find out whatindices or
107- operations are defined in the database?< BR >
106+ < A href ="#4.8 "> 4.8</ A > ) How do I find out whattables or
107+ indexes are defined in the database?< BR >
108108< A href ="#4.9 "> 4.9</ A > ) My queries are slow or don't make use of
109109 the indexes. Why?< BR >
110110< A href ="#4.10 "> 4.10</ A > ) How do I see how the query optimizer is
111111 evaluating my query?< BR >
112112< A href ="#4.11 "> 4.11</ A > ) What is an R-tree index?< BR >
113- < A href ="#4.12 "> 4.12</ A > ) What is Genetic QueryOptimization ?< BR >
114- < A href ="#4.13 "> 4.13</ A > ) How do Ido regular expression searches
113+ < A href ="#4.12 "> 4.12</ A > ) What isthe Genetic QueryOptimizer ?< BR >
114+ < A href ="#4.13 "> 4.13</ A > ) How do Iperform regular expression searches
115115 and case-insensitive regular expression searches?< BR >
116116< A href ="#4.14 "> 4.14</ A > ) In a query, how do I detect if a field
117117 is< SMALL > NULL</ SMALL > ?< BR >
@@ -137,7 +137,7 @@ <H2>Operational Questions</H2>
137137 default to the current time?< BR >
138138< A href ="#4.23 "> 4.23</ A > ) Why are my subqueries using
139139< CODE > < SMALL > IN</ SMALL > </ CODE > so slow?< BR >
140- < A href ="#4.24 "> 4.24</ A > ) How do Ido an< I > outer</ I > join?< BR >
140+ < A href ="#4.24 "> 4.24</ A > ) How do Iperform an< I > outer</ I > join?< BR >
141141
142142
143143< CENTER >
@@ -873,8 +873,8 @@ <H4><A name="4.7">4.7</A>) How much database disk space is required
873873< P > Indexes do not require as much overhead, but do contain the data
874874 that is being indexed, so they can be large also.</ P >
875875
876- < H4 > < A name ="4.8 "> 4.8</ A > ) How do I find out whatindices or
877- operations are defined in the database?</ H4 >
876+ < H4 > < A name ="4.8 "> 4.8</ A > ) How do I find out whattables or
877+ indexes are defined in the database?</ H4 >
878878
879879< P > < I > psql</ I > has a variety of backslash commands to show such
880880 information. Use \? to see them.</ P >
@@ -943,25 +943,21 @@ <H4><A name="4.11">4.11</A>) What is an R-tree index?</H4>
943943 practice, extending R-trees requires a bit of work and we don't
944944 currently have any documentation on how to do it.</ P >
945945
946- < H4 > < A name ="4.12 "> 4.12</ A > ) What is Genetic Query
947- Optimization ?</ H4 >
946+ < H4 > < A name ="4.12 "> 4.12</ A > ) What isthe Genetic Query
947+ Optimizer ?</ H4 >
948948
949949< P > The< SMALL > GEQO</ SMALL > module speeds query optimization when
950950 joining many tables by means of a Genetic Algorithm (GA). It allows
951951 the handling of large join queries through nonexhaustive
952952 search.</ P >
953953
954- < H4 > < A name ="4.13 "> 4.13</ A > ) How do Ido regular expression
954+ < H4 > < A name ="4.13 "> 4.13</ A > ) How do Iperform regular expression
955955 searches and case-insensitive regular expression searches?</ H4 >
956956
957957< P > The< I > ~</ I > operator does regular expression matching, and
958- < I > ~*</ I > does case-insensitive regular expression matching. There
959- is no case-insensitive variant of the< SMALL > LIKE</ SMALL > operator,
960- but you can get the effect of case-insensitive< SMALL > LIKE</ SMALL >
961- with this:</ P >
962- < PRE >
963- WHERE lower(textfield) LIKE lower(pattern)
964- </ PRE >
958+ < I > ~*</ I > does case-insensitive regular expression matching. The
959+ case-insensitive variant of< SMALL > LIKE</ SMALL >
960+ is called< SMALL > ILIKE</ SMALL > .</ P >
965961
966962< H4 > < A name ="4.14 "> 4.14</ A > ) In a query, how do I detect if a field
967963 is< SMALL > NULL</ SMALL > ?</ H4 >
@@ -1147,11 +1143,7 @@ <H4><A name="4.19">4.19</A>) Why do I get the error <I>"FATAL:
11471143 Depending on your shell, only one of these may succeed, but it will
11481144 set your process data segment limit much higher and perhaps allow
11491145 the query to complete. This command applies to the current process,
1150- and all subprocessesHTML & CSS specifications are available from http://www.w3.org/
1151- To learn more about Tidy see http://www.w3.org/People/Raggett/tidy/
1152- Please send bug reports to Dave Raggett care of< html-tidy @w3.org >
1153- Lobby your company to join W3C, see http://www.w3.org/Consortium
1154- created after the command is run. If you are
1146+ and all subprocesses created after the command is run. If you are
11551147 having a problem with the< SMALL > SQL</ SMALL > client because the
11561148 backend is returning too much data, try it before starting the
11571149 client.
@@ -1212,7 +1204,7 @@ <H4><A name="4.23">4.23</A>) Why are my subqueries using
12121204</ PRE >
12131205 We hope to fix this limitation in a future release.
12141206
1215- < H4 > < A name ="4.24 "> 4.24</ A > ) How do Ido an< I > outer</ I > join?< BR >
1207+ < H4 > < A name ="4.24 "> 4.24</ A > ) How do Iperform an< I > outer</ I > join?< BR >
12161208</ H4 >
12171209
12181210< P > PostgreSQL 7.1 and later supports outer joins using the SQL