drop_rule.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_rule.l,v 1.4 1999/02/07 22:10:10 wieck Exp $
  4. .TH "DROP RULE" SQL 11/05/95 PostgreSQL PostgreSQL
  5. .SH NAME
  6. drop rule - removes a current rule from Postgres 
  7. .SH SYNOPSIS
  8. .nf
  9. fBdrop rulefR rule_name
  10. .fi
  11. .SH DESCRIPTION
  12. This command drops the rule named rule_name from the specified Postgres
  13. rule system.  Postgres will immediately cease enforcing it and will purge
  14. its definition from the system catalogs.
  15. .SH EXAMPLE
  16. .nf
  17. --
  18. --This example drops the rewrite rule example_1
  19. --
  20. drop rule example_1
  21. .fi
  22. .SH "SEE ALSO"
  23. create_rule(l),
  24. drop_view(l),
  25. drop_trigger(l).