Sophie

Sophie

distrib > Mandriva > 2006.0 > x86_64 > by-pkgid > b8f4049de69feba5041d49ed4382e582 > files > 551

postgresql-docs-8.0.11-0.1.20060mdk.x86_64.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>REINDEX</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REV="MADE"
HREF="mailto:pgsql-docs@postgresql.org"><LINK
REL="HOME"
TITLE="PostgreSQL 8.0.11 Documentation"
HREF="index.html"><LINK
REL="UP"
TITLE="SQL Commands"
HREF="sql-commands.html"><LINK
REL="PREVIOUS"
TITLE="PREPARE"
HREF="sql-prepare.html"><LINK
REL="NEXT"
TITLE="RELEASE SAVEPOINT"
HREF="sql-release-savepoint.html"><LINK
REL="STYLESHEET"
TYPE="text/css"
HREF="stylesheet.css"><META
HTTP-EQUIV="Content-Type"
CONTENT="text/html; charset=ISO-8859-1"><META
NAME="creation"
CONTENT="2007-02-02T03:57:22"></HEAD
><BODY
CLASS="REFENTRY"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="5"
ALIGN="center"
VALIGN="bottom"
>PostgreSQL 8.0.11 Documentation</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-prepare.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-prepare.html"
>Fast Backward</A
></TD
><TD
WIDTH="60%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="top"
><A
HREF="sql-release-savepoint.html"
>Fast Forward</A
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="top"
><A
HREF="sql-release-savepoint.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="SQL-REINDEX"
></A
>REINDEX</H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN44083"
></A
><H2
>Name</H2
>REINDEX&nbsp;--&nbsp;rebuild indexes</DIV
><A
NAME="AEN44086"
></A
><DIV
CLASS="REFSYNOPSISDIV"
><A
NAME="AEN44088"
></A
><H2
>Synopsis</H2
><PRE
CLASS="SYNOPSIS"
>REINDEX { DATABASE | TABLE | INDEX } <TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
> [ FORCE ]</PRE
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN44091"
></A
><H2
>Description</H2
><P
>   <TT
CLASS="COMMAND"
>REINDEX</TT
> rebuilds an index based on the data
   stored in the index's table, replacing the old copy of the index. There are
   two main reasons to use <TT
CLASS="COMMAND"
>REINDEX</TT
>:

   <P
></P
></P><UL
><LI
><P
>      An index has become corrupted, and no longer contains valid
      data. Although in theory this should never happen, in
      practice indexes may become corrupted due to software bugs or
      hardware failures.  <TT
CLASS="COMMAND"
>REINDEX</TT
> provides a
      recovery method.
     </P
></LI
><LI
><P
>      The index in question contains a lot of dead index pages that
      are not being reclaimed. This can occur with B-tree indexes in
      <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> under certain access
      patterns. <TT
CLASS="COMMAND"
>REINDEX</TT
> provides a way to reduce
      the space consumption of the index by writing a new version of
      the index without the dead pages. See <A
HREF="routine-reindex.html"
>Section 21.2</A
> for more information.
     </P
></LI
></UL
><P>
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN44105"
></A
><H2
>Parameters</H2
><P
></P
><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="LITERAL"
>DATABASE</TT
></DT
><DD
><P
>      Recreate all system indexes of a specified database. Indexes on
      user tables are not processed.  Also, indexes on shared system
      catalogs are skipped except in stand-alone mode (see below).
     </P
></DD
><DT
><TT
CLASS="LITERAL"
>TABLE</TT
></DT
><DD
><P
>      Recreate all indexes of a specified table.  If the table has a
      secondary <SPAN
CLASS="QUOTE"
>"TOAST"</SPAN
> table, that is reindexed as well.
     </P
></DD
><DT
><TT
CLASS="LITERAL"
>INDEX</TT
></DT
><DD
><P
>      Recreate a specified index.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
></DT
><DD
><P
>      The name of the specific database, table, or index to be
      reindexed.  Table and index names may be schema-qualified.
      Presently, <TT
CLASS="COMMAND"
>REINDEX DATABASE</TT
> can only reindex the current
      database, so its parameter must match the current database's name.
     </P
></DD
><DT
><TT
CLASS="LITERAL"
>FORCE</TT
></DT
><DD
><P
>      This is an obsolete option; it is ignored if specified.
     </P
></DD
></DL
></DIV
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN44135"
></A
><H2
>Notes</H2
><P
>   If you suspect corruption of an index on a user table, you can
   simply rebuild that index, or all indexes on the table, using
   <TT
CLASS="COMMAND"
>REINDEX INDEX</TT
> or <TT
CLASS="COMMAND"
>REINDEX TABLE</TT
>.  
  </P
><P
>   Things are more difficult if you need to recover from corruption of
   an index on a system table.  In this case it's important for the
   system to not have used any of the suspect indexes itself.
   (Indeed, in this sort of scenario you may find that server
   processes are crashing immediately at start-up, due to reliance on
   the corrupted indexes.)  To recover safely, the server must be started
   with the <TT
CLASS="OPTION"
>-P</TT
> option, which prevents it from using
   indexes for system catalog lookups.
  </P
><P
>   One way to do this is to shut down the postmaster and start a stand-alone
   <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> server
   with the <TT
CLASS="OPTION"
>-P</TT
> option included on its command line.
   Then, <TT
CLASS="COMMAND"
>REINDEX DATABASE</TT
>,
   <TT
CLASS="COMMAND"
>REINDEX TABLE</TT
>, or <TT
CLASS="COMMAND"
>REINDEX INDEX</TT
> can be
   issued, depending on how much you want to reconstruct.  If in
   doubt, use <TT
CLASS="COMMAND"
>REINDEX DATABASE</TT
> to select
   reconstruction of all system indexes in the database.  Then quit
   the standalone server session and restart the regular server.
   See the <A
HREF="app-postgres.html"
><SPAN
CLASS="APPLICATION"
>postgres</SPAN
></A
> reference page for more
   information about how to interact with the stand-alone server
   interface.
  </P
><P
>   Alternatively, a regular server session can be started with
   <TT
CLASS="OPTION"
>-P</TT
> included in its command line options.
   The method for doing this varies across clients, but in all
   <SPAN
CLASS="APPLICATION"
>libpq</SPAN
>-based clients, it is possible to set
   the <TT
CLASS="ENVAR"
>PGOPTIONS</TT
> environment variable to <TT
CLASS="LITERAL"
>-P</TT
>
   before starting the client.  Note that while this method does not
   require locking out other clients, it may still be wise to prevent
   other users from connecting to the damaged database until repairs
   have been completed.
  </P
><P
>   If corruption is suspected in the indexes of any of the shared
   system catalogs (<TT
CLASS="STRUCTNAME"
>pg_database</TT
>,
   <TT
CLASS="STRUCTNAME"
>pg_group</TT
>,
   <TT
CLASS="STRUCTNAME"
>pg_shadow</TT
>, or
   <TT
CLASS="STRUCTNAME"
>pg_tablespace</TT
>), then a standalone server
   must be used to repair it.  <TT
CLASS="COMMAND"
>REINDEX</TT
> will not process
   shared catalogs in multiuser mode.
  </P
><P
>   For all indexes except the shared system catalogs, <TT
CLASS="COMMAND"
>REINDEX</TT
>
   is crash-safe and transaction-safe.  <TT
CLASS="COMMAND"
>REINDEX</TT
> is not
   crash-safe for shared indexes, which is why this case is disallowed
   during normal operation.  If a failure occurs while reindexing one
   of these catalogs in standalone mode, it will not be possible to
   restart the regular server until the problem is rectified.  (The
   typical symptom of a partially rebuilt shared index is <SPAN
CLASS="QUOTE"
>"index is not
   a btree"</SPAN
> errors.)
  </P
><P
>   <TT
CLASS="COMMAND"
>REINDEX</TT
> is similar to a drop and recreate of the index
   in that the index contents are rebuilt from scratch.  However, the locking
   considerations are rather different.  <TT
CLASS="COMMAND"
>REINDEX</TT
> locks out writes
   but not reads of the index's parent table.  It also takes an exclusive lock
   on the specific index being processed, which will block reads that attempt
   to use that index.  In contrast, <TT
CLASS="COMMAND"
>DROP INDEX</TT
> momentarily takes
   exclusive lock on the parent table, blocking both writes and reads.  The
   subsequent <TT
CLASS="COMMAND"
>CREATE INDEX</TT
> locks out writes but not reads; since
   the index is not there, no read will attempt to use it, meaning that there
   will be no blocking but reads may be forced into expensive sequential
   scans.  Another important point is that the drop/create approach
   invalidates any cached query plans that use the index, while
   <TT
CLASS="COMMAND"
>REINDEX</TT
> does not.
  </P
><P
>   Prior to <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> 7.4, <TT
CLASS="COMMAND"
>REINDEX
   TABLE</TT
> did not automatically process TOAST tables, and so those had
   to be reindexed by separate commands.  This is still possible, but
   redundant.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN44174"
></A
><H2
>Examples</H2
><P
>   Recreate the indexes on the table <TT
CLASS="LITERAL"
>my_table</TT
>:

</P><PRE
CLASS="PROGRAMLISTING"
>REINDEX TABLE my_table;</PRE
><P>
  </P
><P
>   Rebuild a single index:

</P><PRE
CLASS="PROGRAMLISTING"
>REINDEX INDEX my_index;</PRE
><P>
  </P
><P
>   Rebuild all system indexes in a particular database, without trusting them
   to be valid already:

</P><PRE
CLASS="PROGRAMLISTING"
>$ <KBD
CLASS="USERINPUT"
>export PGOPTIONS="-P"</KBD
>
$ <KBD
CLASS="USERINPUT"
>psql broken_db</KBD
>
...
broken_db=&gt; REINDEX DATABASE broken_db;
broken_db=&gt; \q</PRE
><P>
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN44185"
></A
><H2
>Compatibility</H2
><P
>   There is no <TT
CLASS="COMMAND"
>REINDEX</TT
> command in the SQL standard.
  </P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-prepare.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="sql-release-savepoint.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>PREPARE</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="sql-commands.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>RELEASE SAVEPOINT</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>