vacuum.sgml
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:7k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. <REFENTRY ID="SQL-VACUUM-1">
  2. <REFMETA>
  3. <REFENTRYTITLE id="vacuum">
  4. VACUUM
  5. </REFENTRYTITLE>
  6. <REFMISCINFO>SQL - Language Statements</REFMISCINFO>
  7. </REFMETA>
  8. <REFNAMEDIV>
  9. <REFNAME>
  10. VACUUM
  11. </REFNAME>
  12. <REFPURPOSE>
  13. Clean and analyze a <productname>Postgres</productname> database
  14. </REFPURPOSE>
  15.   </refnamediv>
  16. <REFSYNOPSISDIV>
  17. <REFSYNOPSISDIVINFO>
  18. <DATE>1998-10-04</DATE>
  19. </REFSYNOPSISDIVINFO>
  20. <SYNOPSIS>
  21. VACUUM [ VERBOSE ] [ ANALYZE ] [ <REPLACEABLE CLASS="PARAMETER">table</REPLACEABLE> ]
  22. VACUUM [ VERBOSE ] ANALYZE [ <REPLACEABLE CLASS="PARAMETER">table</REPLACEABLE> [ (<REPLACEABLE CLASS="PARAMETER">column</REPLACEABLE> [, ...] ) ] ]
  23. </SYNOPSIS>
  24.     <REFSECT2 ID="R2-SQL-VACUUM-1">
  25.       <REFSECT2INFO>
  26. <DATE>1998-10-04</DATE>
  27.       </REFSECT2INFO>
  28.       <TITLE>
  29. Inputs
  30.       </TITLE>
  31.       <PARA>
  32. <VARIABLELIST>
  33.   <VARLISTENTRY>
  34.     <TERM>
  35.       VERBOSE
  36.     </term>
  37.     <LISTITEM>
  38.       <PARA>
  39. Prints a detailed vacuum activity report for each table.
  40.       </para>
  41.     </listitem>
  42.   </varlistentry>
  43.   <VARLISTENTRY>
  44.     <TERM>
  45.       ANALYZE
  46.     </term>
  47.     <LISTITEM>
  48.       <PARA>
  49. Updates column statistics used by the optimizer to
  50. determine the most efficient way to execute a query.
  51. The statistics represent the disbursion of the data in each column.
  52. This information is valuable when several execution paths are possible.
  53.       </para>
  54.     </listitem>
  55.   </varlistentry>
  56.   <VARLISTENTRY>
  57.     <TERM>
  58.       <REPLACEABLE CLASS="PARAMETER">table</REPLACEABLE>
  59.     </term>
  60.     <LISTITEM>
  61.       <PARA>
  62. The name of a specific table to vacuum. Defaults to all tables.
  63.       </para>
  64.     </listitem>
  65.   </varlistentry>
  66.   <VARLISTENTRY>
  67.     <TERM>
  68.       <REPLACEABLE CLASS="PARAMETER">column</REPLACEABLE>
  69.     </term>
  70.     <LISTITEM>
  71.       <PARA>
  72. The name of a specific column to analyze. Defaults to all columns.
  73.       </para>
  74.     </listitem>
  75.   </varlistentry>
  76. </VARIABLELIST>
  77.       </para>
  78.     </REFSECT2>
  79.     <REFSECT2 ID="R2-SQL-VACUUM-2">
  80.       <REFSECT2INFO>
  81. <DATE>1998-10-04</DATE>
  82.       </REFSECT2INFO>
  83.       <TITLE>
  84. Outputs
  85.       </TITLE>
  86.       <PARA>
  87. <VARIABLELIST>
  88.   <VARLISTENTRY>
  89.     <TERM>
  90.       <ReturnValue>VACUUM</ReturnValue>
  91.     </TERM>
  92.     <LISTITEM>
  93.       <PARA>
  94. The command has been accepted and the database is being cleaned.
  95.       </para>
  96.     </listitem>
  97.   </varlistentry>
  98.   
  99.   <VARLISTENTRY>
  100.     <TERM>
  101.       NOTICE:  --Relation <REPLACEABLE CLASS="PARAMETER">table</REPLACEABLE>--
  102.     </term>
  103.     <LISTITEM>
  104.       <PARA>
  105. The report header for <REPLACEABLE CLASS="PARAMETER">table</REPLACEABLE>.
  106.       </para>
  107.     </listitem>
  108.   </varlistentry>
  109.   <VARLISTENTRY>
  110.     <TERM>
  111.       NOTICE:  Pages 98: Changed 25, Reapped 74, Empty 0, New 0;
  112.       Tup 1000: Vac 3000, Crash 0, UnUsed 0, MinLen 188, MaxLen 188;
  113.       Re-using: Free/Avail. Space 586952/586952; EndEmpty/Avail. Pages 0/74.
  114.       Elapsed 0/0 sec.
  115.     </term>
  116.     <LISTITEM>
  117.       <PARA>
  118. The analysis for <REPLACEABLE CLASS="PARAMETER">table</REPLACEABLE> itself.
  119.       </para>
  120.     </listitem>
  121.   </varlistentry>
  122.   
  123.   <VARLISTENTRY>
  124.     <TERM>
  125.       NOTICE:  Index <REPLACEABLE CLASS="PARAMETER">index</REPLACEABLE>: Pages 28;
  126.       Tuples 1000: Deleted 3000. Elapsed 0/0 sec.
  127.     </term>
  128.     <LISTITEM>
  129.       <PARA>
  130. The analysis for an index on the target table.
  131.       </para>
  132.     </listitem>
  133.   </varlistentry>
  134. </VARIABLELIST>
  135.       </para>
  136.     </REFSECT2>
  137.   </REFSYNOPSISDIV>
  138.   <REFSECT1 ID="R1-SQL-VACUUM-1">
  139.     <REFSECT1INFO>
  140.       <DATE>1998-10-04</DATE>
  141.     </REFSECT1INFO>
  142.     <TITLE>
  143.       Description
  144.     </TITLE>
  145.     <PARA>
  146.       <command>VACUUM</command> serves two purposes in 
  147.       <productname>Postgres</productname> as both a means to reclaim storage and
  148.       also a means to collect information for the optimizer.
  149.     </para>
  150.     <para>
  151.       <command>VACUUM</command> opens every class in the database,
  152.       cleans out records from rolled back transactions, and updates statistics in the
  153.       system catalogs.  The statistics maintained include the number of
  154.       tuples and number of pages stored in all classes.
  155.       Running <command>VACUUM</command>
  156.       periodically will increase the speed of the database in processing user queries.
  157.     </para>
  158.     <REFSECT2 ID="R2-SQL-VACUUM-3">
  159.       <REFSECT2INFO>
  160. <DATE>1998-10-04</DATE>
  161.       </REFSECT2INFO>
  162.       <TITLE>
  163. Notes
  164.       </TITLE>
  165.       <PARA>
  166. The open database is target for <command>VACUUM</command>.
  167.       </para>
  168.       <para>
  169. We recommend that active production databases be cleaned nightly, in order
  170. to keep statistics relatively current.  The <command>VACUUM</command>
  171. query may be executed at any time, however.  In particular, after
  172. copying a large class into <productname>Postgres</productname> 
  173. or after deleting a large number of
  174. records, it may be a good idea to issue a <command>VACUUM</command>
  175. query.  This will update the system catalogs with the results of all
  176. recent changes, and allow the <productname>Postgres</productname> 
  177. query optimizer to make better choices in planning user queries.
  178.       </para>
  179.       <para>
  180. If the server crashes during a <command>VACUUM</command> command, 
  181. chances are it will leave a lock file hanging around.  
  182. Attempts to re-run the <command>VACUUM</command> command
  183. result in an error message about the creation of a lock file.  If you
  184. are sure <command>VACUUM</command> is not running, 
  185. remove the <filename>pg_vlock</filename> file in your
  186. database directory 
  187. (i.e. <filename><envar>PGDATA</envar>/base/dbname/pg_vlock</filename>).
  188.       </PARA>
  189.       
  190.     </REFSECT2>
  191.   </refsect1>
  192.   <REFSECT1 ID="R1-SQL-VACUUM-2">
  193.     <TITLE>
  194.       Usage
  195.     </TITLE>
  196.     <PARA>
  197.       The following is an example from running <command>VACUUM</command> on a table
  198.       in the regression database:
  199.       
  200.       <ProgramListing>
  201. regression=> vacuum verbose analyze onek;
  202. NOTICE:  --Relation onek--
  203. NOTICE:  Pages 98: Changed 25, Reapped 74, Empty 0, New 0;
  204.          Tup 1000: Vac 3000, Crash 0, UnUsed 0, MinLen 188, MaxLen 188;
  205.          Re-using: Free/Avail. Space 586952/586952; EndEmpty/Avail. Pages 0/74.
  206.          Elapsed 0/0 sec.
  207. NOTICE:  Index onek_stringu1: Pages 28; Tuples 1000: Deleted 3000. Elapsed 0/0 sec.
  208. NOTICE:  Index onek_hundred: Pages 12; Tuples 1000: Deleted 3000. Elapsed 0/0 sec.
  209. NOTICE:  Index onek_unique2: Pages 19; Tuples 1000: Deleted 3000. Elapsed 0/0 sec.
  210. NOTICE:  Index onek_unique1: Pages 17; Tuples 1000: Deleted 3000. Elapsed 0/0 sec.
  211. NOTICE:  Rel onek: Pages: 98 --> 25; Tuple(s) moved: 1000. Elapsed 0/1 sec.
  212. NOTICE:  Index onek_stringu1: Pages 28; Tuples 1000: Deleted 1000. Elapsed 0/0 sec.
  213. NOTICE:  Index onek_hundred: Pages 12; Tuples 1000: Deleted 1000. Elapsed 0/0 sec.
  214. NOTICE:  Index onek_unique2: Pages 19; Tuples 1000: Deleted 1000. Elapsed 0/0 sec.
  215. NOTICE:  Index onek_unique1: Pages 17; Tuples 1000: Deleted 1000. Elapsed 0/0 sec.
  216. VACUUM
  217.       </ProgramListing>
  218.     </para>
  219.   </REFSECT1>
  220.   <REFSECT1 ID="R1-SQL-VACUUM-3">
  221.     <TITLE>
  222.       Compatibility
  223.     </TITLE>
  224.     <REFSECT2 ID="R2-SQL-VACUUM-4">
  225.       <REFSECT2INFO>
  226. <DATE>1998-10-04</DATE>
  227.       </REFSECT2INFO>
  228.       <TITLE>
  229. SQL92
  230.       </TITLE>
  231.       <PARA>
  232. There is no <COMMAND>VACUUM</COMMAND> statement in SQL92.
  233.       </para>
  234.     </refsect2>
  235.   </refsect1>
  236. </REFENTRY>