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

数据库系统

开发平台:

Unix_Linux

  1. ." This is -*-nroff-*-
  2. ." XXX standard disclaimer belongs here....
  3. ." $Header: /usr/local/cvsroot/pgsql/src/man/Attic/drop_index.l,v 1.4 1998/06/23 17:52:35 momjian Exp $
  4. .TH "DROP INDEX" SQL 11/05/95 PostgreSQL PostgreSQL
  5. .SH NAME
  6. drop index - removes an index from Postgres
  7. .SH SYNOPSIS
  8. .nf
  9. fBdrop indexfR index_name
  10. .fi
  11. .SH DESCRIPTION
  12. This command drops an existing index from the Postgres system.  To
  13. execute this command you must be the owner of the index.
  14. .SH EXAMPLE
  15. .nf
  16. --
  17. --this command will remove the "emp_index" index
  18. --
  19. drop index emp_index
  20. .fi
  21. .SH "SEE ALSO"
  22. create_index(l).