1
1
<!--
2
- $Header: /cvsroot/pgsql/doc/src/sgml/ref/reindex.sgml,v 1.13 2002/09/21 18:32:54 petere Exp $
2
+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/reindex.sgml,v 1.14 2002/11/17 23:43:32 momjian Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -21,7 +21,7 @@ PostgreSQL documentation
21
21
<date>2000-03-30</date>
22
22
</refsynopsisdivinfo>
23
23
<synopsis>
24
- REINDEX { TABLE | DATABASE | INDEX } <replaceable class="PARAMETER">name</replaceable> [ FORCE ]
24
+ REINDEX { DATABASE | TABLE | INDEX } <replaceable class="PARAMETER">name</replaceable> [ FORCE ]
25
25
</synopsis>
26
26
27
27
<refsect2 id="R2-SQL-REINDEX-1">
@@ -35,19 +35,19 @@ REINDEX { TABLE | DATABASE | INDEX } <replaceable class="PARAMETER">name</replac
35
35
36
36
<variablelist>
37
37
<varlistentry>
38
- <term>TABLE </term>
38
+ <term>DATABASE </term>
39
39
<listitem>
40
40
<para>
41
- Recreate all indexes of a specified table.
41
+ Recreate all system indexes of a specified database.
42
+ (User-table indexes are not included.)
42
43
</para>
43
44
</listitem>
44
45
</varlistentry>
45
46
<varlistentry>
46
- <term>DATABASE </term>
47
+ <term>TABLE </term>
47
48
<listitem>
48
49
<para>
49
- Recreate all system indexes of a specified database.
50
- (User-table indexes are not included.)
50
+ Recreate all indexes of a specified table.
51
51
</para>
52
52
</listitem>
53
53
</varlistentry>
@@ -63,7 +63,7 @@ REINDEX { TABLE | DATABASE | INDEX } <replaceable class="PARAMETER">name</replac
63
63
<term><replaceable class="PARAMETER">name</replaceable></term>
64
64
<listitem>
65
65
<para>
66
- The name of the specific table/ database/index to be reindexed.
66
+ The name of the specific database/table /index to be reindexed.
67
67
Table and index names may be schema-qualified.
68
68
</para>
69
69
</listitem>
@@ -156,8 +156,8 @@ REINDEX
156
156
started instead, giving it
157
157
the command-line options -O and -P (these options allow system table
158
158
modifications and prevent use of system indexes, respectively). Then
159
- issue <command>REINDEX INDEX </>, <command>REINDEX TABLE</>, or
160
- <command>REINDEX DATABASE </> depending on how much you want to reconstruct.
159
+ issue <command>REINDEX DATABASE </>, <command>REINDEX TABLE</>,
160
+ <command>REINDEX INDEX </>, or depending on how much you want to reconstruct.
161
161
If in doubt, use <command>REINDEX DATABASE FORCE</> to force reconstruction
162
162
of all system indexes in the database. Then quit the standalone backend
163
163
and restart the postmaster.
0 commit comments