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

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end "CREATE INDEX" {bold} " constructs an index index_name. on the specified table. 
  2.        Tip: Indexes are primarily used to enhance database performance. But inappropriate use will result in slower performance. 
  3. In the first syntax shown above, the key fields for the index are specified as column names; a column may also have an associated operator class. An operator class is used to specify the 
  4. operators to be used for a particular index. For example, a btree index on four-byte integers would use the int4_ops class; this operator class includes comparison functions for four-byte 
  5. integers. The default operator class is the appropriate operator class for that field type. 
  6. In the second syntax, an index is defined on the result of a user-defined function func_name applied to one or more attributes of a single class. These functional indexes can be used to obtain 
  7. fast access to data based on operators that would normally require some transformation to apply them to the base data. 
  8. " {} "Synopsis" {bold} "
  9. CREATE [ UNIQUE ] INDEX index_name
  10.     ON table [ USING acc_name ]
  11.     ( column [ ops_name] [, ...] )
  12. CREATE [ UNIQUE ] INDEX index_name
  13.     ON table [ USING acc_name ]
  14.     ( func_name( column [, ... ]) ops_name )
  15. " {code} "Inputs" {bold} "
  16. " {} "UNIQUE" {italic} "
  17.        Causes the system to check for duplicate values in the table when the index is created 
  18.        (if data already exist) and each time data is added. Attempts to insert or update non-duplicate 
  19.        data will generate an error. 
  20. " {} "index_name" {italic} "
  21.        The name of the index to be created. 
  22. " {} "table" {italic} "
  23.        The name of the table to be indexed. 
  24. " {} "acc_name" {italic} "
  25.        the name of the access method which is to be used for the index. The default access method is BTREE. Postgres provides three access methods for secondary indexes: 
  26.        BTREE
  27.               an implementation of the Lehman-Yao high-concurrency btrees. 
  28.        RTREE
  29.               implements standard rtrees using Guttman's quadratic split algorithm. 
  30.        HASH
  31.               an implementation of Litwin's linear hashing. 
  32. " {} "column" {italic} "
  33.        The name of a column of the table. 
  34. " {} "ops_name" {italic} "
  35.        An associated operator class. The following select list returns all ops_names: 
  36. " {} "
  37.        SELECT am.amname AS acc_name,
  38.               opc.opcname AS ops_name,
  39.               opr.oprname AS ops_comp
  40.            FROM pg_am am, pg_amop amop,
  41.                 pg_opclass opc, pg_operator opr
  42.            WHERE amop.amopid = am.oid AND
  43.                  amop.amopclaid = opc.oid AND
  44.                  amop.amopopr = opr.oid
  45.            ORDER BY acc_name, ops_name, ops_comp
  46. " {code} "func_name" {italic} "
  47.        A user-defined function, which returns a value that can be indexed. 
  48. " {} "Outputs" {bold} "
  49. " {} "CREATE" {italic} "
  50.        The message returned if the index is successfully created. 
  51. " {} "ERROR: Cannot create index: 'index_name' already exists." {italic} "
  52.        This error occurs if it is impossible to create the index. 
  53.        
  54. " {} "Usage" {bold} "
  55. To create a btree index on the field title in the table films: 
  56. " {} "
  57. CREATE UNIQUE INDEX title_idx
  58.     ON films (title);
  59.     
  60. " {code} "Notes" {bold} "
  61. Currently, only the BTREE access method supports multi-column indexes. Up to 7 keys may be specified. 
  62. Use DROP INDEX to remove an index. "