Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
c8054917
Commit
c8054917
authored
24 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Update FAQ.
parent
728b0aa2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/FAQ
+16
-23
16 additions, 23 deletions
doc/FAQ
doc/src/FAQ/FAQ.html
+15
-23
15 additions, 23 deletions
doc/src/FAQ/FAQ.html
with
31 additions
and
46 deletions
doc/FAQ
+
16
−
23
View file @
c8054917
...
...
@@ -67,14 +67,14 @@
4.6) What is the maximum size for a row, table, database?
4.7) How much database disk space is required to store data from a
typical text file?
4.8) How do I find out what
indic
es or
operation
s are defined in the
4.8) How do I find out what
tabl
es or
indexe
s are defined in the
database?
4.9) My queries are slow or don't make use of the indexes. Why?
4.10) How do I see how the query optimizer is evaluating my query?
4.11) What is an R-tree index?
4.12) What is Genetic Query Optimiz
ation
?
4.13) How do I
do
regular expression searches and
case-insensitive
regular expression searches?
4.12) What is
the
Genetic Query Optimiz
er
?
4.13) How do I
perform
regular expression searches and
case-insensitive
regular expression searches?
4.14) In a query, how do I detect if a field is NULL?
4.15) What is the difference between the various character types?
4.16.1) How do I create a serial/auto-incrementing field?
...
...
@@ -90,7 +90,7 @@
Why?
4.22) How do I create a column that will default to the current time?
4.23) Why are my subqueries using IN so slow?
4.24) How do I
do
an outer join?
4.24) How do I
perform
an outer join?
Extending PostgreSQL
...
...
@@ -677,8 +677,7 @@ Maximum number of indexes on a table? unlimited
Indexes do not require as much overhead, but do contain the data that
is being indexed, so they can be large also.
4.8) How do I find out what indices or operations are defined in the
database?
4.8) How do I find out what tables or indexes are defined in the database?
psql has a variety of backslash commands to show such information. Use
\? to see them.
...
...
@@ -739,21 +738,19 @@ Maximum number of indexes on a table? unlimited
extending R-trees requires a bit of work and we don't currently have
any documentation on how to do it.
4.12) What is Genetic Query Optimiz
ation
?
4.12) What is
the
Genetic Query Optimiz
er
?
The GEQO module speeds query optimization when joining many tables by
means of a Genetic Algorithm (GA). It allows the handling of large
join queries through nonexhaustive search.
4.13) How do I
do
regular expression searches and case-insensitive
regular
expression searches?
4.13) How do I
perform
regular expression searches and case-insensitive
regular
expression searches?
The ~ operator does regular expression matching, and ~* does
case-insensitive regular expression matching. There is no
case-insensitive variant of the LIKE operator, but you can get the
effect of case-insensitive LIKE with this:
WHERE lower(textfield) LIKE lower(pattern)
case-insensitive regular expression matching. The case-insensitive
variant of LIKE is called ILIKE.
4.14) In a query, how do I detect if a field is NULL?
You test the column with IS NULLIS NOT NULL.
...
...
@@ -893,13 +890,9 @@ BYTEA bytea variable-length byte array (null-safe)
Depending on your shell, only one of these may succeed, but it will
set your process data segment limit much higher and perhaps allow the
query to complete. This command applies to the current process, and
all subprocessesHTML & CSS specifications are available from
http://www.w3.org/ To learn more about Tidy see
http://www.w3.org/People/Raggett/tidy/ Please send bug reports to Dave
Raggett care of Lobby your company to join W3C, see
http://www.w3.org/Consortium created after the command is run. If you
are having a problem with the SQL client because the backend is
returning too much data, try it before starting the client.
all subprocesses created after the command is run. If you are having a
problem with the SQL client because the backend is returning too much
data, try it before starting the client.
4.20) How do I tell what PostgreSQL version I am running?
...
...
@@ -940,7 +933,7 @@ SELECT *
We hope to fix this limitation in a future release.
4.24) How do I
do
an outer join?
4.24) How do I
perform
an outer join?
PostgreSQL 7.1 and later supports outer joins using the SQL standard
syntax. Here are two examples:
...
...
This diff is collapsed.
Click to expand it.
doc/src/FAQ/FAQ.html
+
15
−
23
View file @
c8054917
...
...
@@ -103,15 +103,15 @@
database?
<BR>
<A
href=
"#4.7"
>
4.7
</A>
) How much database disk space is required
to store data from a typical text file?
<BR>
<A
href=
"#4.8"
>
4.8
</A>
) How do I find out what
indic
es or
operation
s are defined in the database?
<BR>
<A
href=
"#4.8"
>
4.8
</A>
) How do I find out what
tabl
es or
indexe
s are defined in the database?
<BR>
<A
href=
"#4.9"
>
4.9
</A>
) My queries are slow or don't make use of
the indexes. Why?
<BR>
<A
href=
"#4.10"
>
4.10
</A>
) How do I see how the query optimizer is
evaluating my query?
<BR>
<A
href=
"#4.11"
>
4.11
</A>
) What is an R-tree index?
<BR>
<A
href=
"#4.12"
>
4.12
</A>
) What is Genetic Query Optimiz
ation
?
<BR>
<A
href=
"#4.13"
>
4.13
</A>
) How do I
do
regular expression searches
<A
href=
"#4.12"
>
4.12
</A>
) What is
the
Genetic Query Optimiz
er
?
<BR>
<A
href=
"#4.13"
>
4.13
</A>
) How do I
perform
regular expression searches
and case-insensitive regular expression searches?
<BR>
<A
href=
"#4.14"
>
4.14
</A>
) In a query, how do I detect if a field
is
<SMALL>
NULL
</SMALL>
?
<BR>
...
...
@@ -137,7 +137,7 @@
default to the current time?
<BR>
<A
href=
"#4.23"
>
4.23
</A>
) Why are my subqueries using
<CODE><SMALL>
IN
</SMALL></CODE>
so slow?
<BR>
<A
href=
"#4.24"
>
4.24
</A>
) How do I
do
an
<I>
outer
</I>
join?
<BR>
<A
href=
"#4.24"
>
4.24
</A>
) How do I
perform
an
<I>
outer
</I>
join?
<BR>
<CENTER>
...
...
@@ -873,8 +873,8 @@ Maximum number of indexes on a table? unlimited
<P>
Indexes do not require as much overhead, but do contain the data
that is being indexed, so they can be large also.
</P>
<H4><A
name=
"4.8"
>
4.8
</A>
) How do I find out what
indic
es or
operation
s are defined in the database?
</H4>
<H4><A
name=
"4.8"
>
4.8
</A>
) How do I find out what
tabl
es or
indexe
s are defined in the database?
</H4>
<P><I>
psql
</I>
has a variety of backslash commands to show such
information. Use \? to see them.
</P>
...
...
@@ -943,25 +943,21 @@ Maximum number of indexes on a table? unlimited
practice, extending R-trees requires a bit of work and we don't
currently have any documentation on how to do it.
</P>
<H4><A
name=
"4.12"
>
4.12
</A>
) What is Genetic Query
Optimiz
ation
?
</H4>
<H4><A
name=
"4.12"
>
4.12
</A>
) What is
the
Genetic Query
Optimiz
er
?
</H4>
<P>
The
<SMALL>
GEQO
</SMALL>
module speeds query optimization when
joining many tables by means of a Genetic Algorithm (GA). It allows
the handling of large join queries through nonexhaustive
search.
</P>
<H4><A
name=
"4.13"
>
4.13
</A>
) How do I
do
regular expression
<H4><A
name=
"4.13"
>
4.13
</A>
) How do I
perform
regular expression
searches and case-insensitive regular expression searches?
</H4>
<P>
The
<I>
~
</I>
operator does regular expression matching, and
<I>
~*
</I>
does case-insensitive regular expression matching. There
is no case-insensitive variant of the
<SMALL>
LIKE
</SMALL>
operator,
but you can get the effect of case-insensitive
<SMALL>
LIKE
</SMALL>
with this:
</P>
<PRE>
WHERE lower(textfield) LIKE lower(pattern)
</PRE>
<I>
~*
</I>
does case-insensitive regular expression matching. The
case-insensitive variant of
<SMALL>
LIKE
</SMALL>
is called
<SMALL>
ILIKE
</SMALL>
.
</P>
<H4><A
name=
"4.14"
>
4.14
</A>
) In a query, how do I detect if a field
is
<SMALL>
NULL
</SMALL>
?
</H4>
...
...
@@ -1147,11 +1143,7 @@ BYTEA bytea variable-length byte array (null-safe)
Depending on your shell, only one of these may succeed, but it will
set your process data segment limit much higher and perhaps allow
the query to complete. This command applies to the current process,
and all subprocessesHTML
&
CSS specifications are available from http://www.w3.org/
To learn more about Tidy see http://www.w3.org/People/Raggett/tidy/
Please send bug reports to Dave Raggett care of
<html-tidy
@
w3.org
>
Lobby your company to join W3C, see http://www.w3.org/Consortium
created after the command is run. If you are
and all subprocesses created after the command is run. If you are
having a problem with the
<SMALL>
SQL
</SMALL>
client because the
backend is returning too much data, try it before starting the
client.
...
...
@@ -1212,7 +1204,7 @@ Lobby your company to join W3C, see http://www.w3.org/Consortium
</PRE>
We hope to fix this limitation in a future release.
<H4><A
name=
"4.24"
>
4.24
</A>
) How do I
do
an
<I>
outer
</I>
join?
<BR>
<H4><A
name=
"4.24"
>
4.24
</A>
) How do I
perform
an
<I>
outer
</I>
join?
<BR>
</H4>
<P>
PostgreSQL 7.1 and later supports outer joins using the SQL
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment