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
38e6eb19
Commit
38e6eb19
authored
Nov 17, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Re-order REINDEX options in manual for consistency. REINDEX
DATABASE/TABLE/INDEX is the proper order.
parent
8fbef3b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
doc/src/sgml/ref/reindex.sgml
doc/src/sgml/ref/reindex.sgml
+10
-10
No files found.
doc/src/sgml/ref/reindex.sgml
View file @
38e6eb19
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/reindex.sgml,v 1.1
3 2002/09/21 18:32:54 petere
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/reindex.sgml,v 1.1
4 2002/11/17 23:43:32 momjian
Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -21,7 +21,7 @@ PostgreSQL documentation
...
@@ -21,7 +21,7 @@ PostgreSQL documentation
<date>2000-03-30</date>
<date>2000-03-30</date>
</refsynopsisdivinfo>
</refsynopsisdivinfo>
<synopsis>
<synopsis>
REINDEX {
TABLE | DATABAS
E | INDEX } <replaceable class="PARAMETER">name</replaceable> [ FORCE ]
REINDEX {
DATABASE | TABL
E | INDEX } <replaceable class="PARAMETER">name</replaceable> [ FORCE ]
</synopsis>
</synopsis>
<refsect2 id="R2-SQL-REINDEX-1">
<refsect2 id="R2-SQL-REINDEX-1">
...
@@ -35,19 +35,19 @@ REINDEX { TABLE | DATABASE | INDEX } <replaceable class="PARAMETER">name</replac
...
@@ -35,19 +35,19 @@ REINDEX { TABLE | DATABASE | INDEX } <replaceable class="PARAMETER">name</replac
<variablelist>
<variablelist>
<varlistentry>
<varlistentry>
<term>
TABL
E</term>
<term>
DATABAS
E</term>
<listitem>
<listitem>
<para>
<para>
Recreate all indexes of a specified table.
Recreate all system indexes of a specified database.
(User-table indexes are not included.)
</para>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
<varlistentry>
<varlistentry>
<term>
DATABAS
E</term>
<term>
TABL
E</term>
<listitem>
<listitem>
<para>
<para>
Recreate all system indexes of a specified database.
Recreate all indexes of a specified table.
(User-table indexes are not included.)
</para>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
...
@@ -63,7 +63,7 @@ REINDEX { TABLE | DATABASE | INDEX } <replaceable class="PARAMETER">name</replac
...
@@ -63,7 +63,7 @@ REINDEX { TABLE | DATABASE | INDEX } <replaceable class="PARAMETER">name</replac
<term><replaceable class="PARAMETER">name</replaceable></term>
<term><replaceable class="PARAMETER">name</replaceable></term>
<listitem>
<listitem>
<para>
<para>
The name of the specific
table/databas
e/index to be reindexed.
The name of the specific
database/tabl
e/index to be reindexed.
Table and index names may be schema-qualified.
Table and index names may be schema-qualified.
</para>
</para>
</listitem>
</listitem>
...
@@ -156,8 +156,8 @@ REINDEX
...
@@ -156,8 +156,8 @@ REINDEX
started instead, giving it
started instead, giving it
the command-line options -O and -P (these options allow system table
the command-line options -O and -P (these options allow system table
modifications and prevent use of system indexes, respectively). Then
modifications and prevent use of system indexes, respectively). Then
issue <command>REINDEX
INDEX</>, <command>REINDEX TABLE</>, or
issue <command>REINDEX
DATABASE</>, <command>REINDEX TABLE</>,
<command>REINDEX
DATABASE</>
depending on how much you want to reconstruct.
<command>REINDEX
INDEX</>, or
depending on how much you want to reconstruct.
If in doubt, use <command>REINDEX DATABASE FORCE</> to force reconstruction
If in doubt, use <command>REINDEX DATABASE FORCE</> to force reconstruction
of all system indexes in the database. Then quit the standalone backend
of all system indexes in the database. Then quit the standalone backend
and restart the postmaster.
and restart the postmaster.
...
...
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