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

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end 
  2. "VACUUM" {bold} " serves two purposes in Postgres as both a means to reclaim storage and also a means to collect information for the optimizer. 
  3. VACUUM opens every class in the database, cleans out records from rolled back transactions, and updates statistics in the system catalogs. The statistics maintained include the number of tuples and number of pages stored in all classes. Running VACUUM periodically will increase the speed of the database in processing user queries. 
  4. " {} "Notes:" {italic} " The open database is target for VACUUM. 
  5. We recommend that active production databases be cleaned nightly, in order to keep statistics relatively current. The VACUUM query may be executed at any time, however. In particular, after copying a large class into Postgres or after deleting a large number of records, it may be a good idea to issue a VACUUM query. This will update the system catalogs with the results of all recent changes, and allow the Postgres query optimizer to make better choices in planning user queries. 
  6. If the server crashes during a VACUUM command, chances are it will leave a lock file hanging around. Attempts to re-run the VACUUM command result in an error message about the creation of a lock file. If you are sure VACUUM is not running, remove the pg_vlock file in your database directory (i.e. PGDATA/base/dbname/pg_vlock). 
  7. " {} "Synopsis" {bold} "
  8. VACUUM [ VERBOSE ] [ ANALYZE ] [ table ]
  9. VACUUM [ VERBOSE ] ANALYZE [ table [ (column [, ...] ) ] ]
  10. " {code} "VERBOSE" {italic} "
  11. Prints a detailed vacuum activity report for each table. 
  12. " {} "ANALYZE" {italic} "
  13. Updates column statistics used by the optimizer to determine the most efficient way to execute a query. The statistics represent the disbursion of the data in each column. This information is valuable when several execution paths are possible. 
  14. " {} "table" {italic} "
  15. The name of a specific table to vacuum. Defaults to all tables. 
  16. " {} "column" {italic} "
  17. The name of a specific column to analyze. Defaults to all columns. "