Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
227a5846
Commit
227a5846
authored
May 30, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update FAQ.
parent
e07d8949
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
doc/FAQ
doc/FAQ
+3
-3
doc/src/FAQ/FAQ.html
doc/src/FAQ/FAQ.html
+4
-4
No files found.
doc/FAQ
View file @
227a5846
Frequently Asked Questions (FAQ) for PostgreSQL
Last updated: Wed May 30 1
8:57:52
EDT 2001
Last updated: Wed May 30 1
9:00:33
EDT 2001
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
...
...
@@ -709,9 +709,9 @@ Maximum number of indexes on a table? unlimited
column statistics on its own, so VACUUM ANALYZE must be run to collect
them periodically.
Indexes are usually not used for ORDER BY or joins
: a
sequential scan
Indexes are usually not used for ORDER BY or joins
. A
sequential scan
followed by an explicit sort is faster than an indexscan of all tuples
of a large table
, because it takes fewer disk accesses
.
of a large table
. This is because random disk access is very slow
.
When using wild-card operators such as LIKE or ~, indices can only be
used if the beginning of the search is anchored to the start of the
...
...
doc/src/FAQ/FAQ.html
View file @
227a5846
...
...
@@ -12,7 +12,7 @@
alink=
"#0000FF"
>
<H1>
Frequently Asked Questions (FAQ) for PostgreSQL
</H1>
<P>
Last updated: Wed May 30 1
8:57:52
EDT 2001
</P>
<P>
Last updated: Wed May 30 1
9:00:33
EDT 2001
</P>
<P>
Current maintainer: Bruce Momjian (
<A
href=
"mailto:pgman@candle.pha.pa.us"
>
pgman@candle.pha.pa.us
</A>
)
<BR>
...
...
@@ -908,9 +908,9 @@ Maximum number of indexes on a table? unlimited
periodically.
</P>
<P>
Indexes are usually not used for
<SMALL>
ORDER BY
</SMALL>
or joins
: a
sequential scan followed by an explicit sort is
faster than an indexscan of all tuples of a large table
, because it
takes fewer disk accesses
.
</P>
or joins
. A
sequential scan followed by an explicit sort is
faster than an indexscan of all tuples of a large table
. This
is because random disk access is very slow
.
</P>
<P>
When using wild-card operators such as
<SMALL>
LIKE
</SMALL>
or
<I>
~,
</I>
indices can only be used if the beginning of the search
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment