diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-11-17 23:43:32 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-11-17 23:43:32 +0000 |
commit | 38e6eb197d87fc815c88c1caf79cd4cd8887272e (patch) | |
tree | 15f5ad964f6f6533b7901857569081144ef25885 /doc/src | |
parent | 8fbef3b55dd9497ebb45c6dd5def42d424c7f9d0 (diff) | |
download | postgresql-38e6eb197d87fc815c88c1caf79cd4cd8887272e.tar.gz postgresql-38e6eb197d87fc815c88c1caf79cd4cd8887272e.zip |
Re-order REINDEX options in manual for consistency. REINDEX
DATABASE/TABLE/INDEX is the proper order.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/reindex.sgml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml index 6a927bbbd41..08666b2f02a 100644 --- a/doc/src/sgml/ref/reindex.sgml +++ b/doc/src/sgml/ref/reindex.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/reindex.sgml,v 1.13 2002/09/21 18:32:54 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/reindex.sgml,v 1.14 2002/11/17 23:43:32 momjian Exp $ PostgreSQL documentation --> @@ -21,7 +21,7 @@ PostgreSQL documentation <date>2000-03-30</date> </refsynopsisdivinfo> <synopsis> -REINDEX { TABLE | DATABASE | INDEX } <replaceable class="PARAMETER">name</replaceable> [ FORCE ] +REINDEX { DATABASE | TABLE | INDEX } <replaceable class="PARAMETER">name</replaceable> [ FORCE ] </synopsis> <refsect2 id="R2-SQL-REINDEX-1"> @@ -35,19 +35,19 @@ REINDEX { TABLE | DATABASE | INDEX } <replaceable class="PARAMETER">name</replac <variablelist> <varlistentry> - <term>TABLE</term> + <term>DATABASE</term> <listitem> <para> - Recreate all indexes of a specified table. + Recreate all system indexes of a specified database. + (User-table indexes are not included.) </para> </listitem> </varlistentry> <varlistentry> - <term>DATABASE</term> + <term>TABLE</term> <listitem> <para> - Recreate all system indexes of a specified database. - (User-table indexes are not included.) + Recreate all indexes of a specified table. </para> </listitem> </varlistentry> @@ -63,7 +63,7 @@ REINDEX { TABLE | DATABASE | INDEX } <replaceable class="PARAMETER">name</replac <term><replaceable class="PARAMETER">name</replaceable></term> <listitem> <para> - The name of the specific table/database/index to be reindexed. + The name of the specific database/table/index to be reindexed. Table and index names may be schema-qualified. </para> </listitem> @@ -156,8 +156,8 @@ REINDEX started instead, giving it the command-line options -O and -P (these options allow system table modifications and prevent use of system indexes, respectively). Then - issue <command>REINDEX INDEX</>, <command>REINDEX TABLE</>, or - <command>REINDEX DATABASE</> depending on how much you want to reconstruct. + issue <command>REINDEX DATABASE</>, <command>REINDEX TABLE</>, + <command>REINDEX INDEX</>, or depending on how much you want to reconstruct. If in doubt, use <command>REINDEX DATABASE FORCE</> to force reconstruction of all system indexes in the database. Then quit the standalone backend and restart the postmaster. |