drop_language.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_language.l,v 1.3 1998/06/23 17:52:35 momjian Exp $
  4. .TH "DROP LANGUAGE" SQL 11/05/95 PostgreSQL PostgreSQL
  5. .SH NAME
  6. drop language - remove a user-defined procedural language
  7. .SH SYNOPSIS
  8. .nf
  9. fBdrop procedural languagefR 'lanname'
  10. .fi
  11. .SH DESCRIPTION
  12. .BR "drop procedural language"
  13. will remove the definition of the previously registered PL with the
  14. name
  15. .IR lanname .
  16. .SH EXAMPLE
  17. .nf
  18. --
  19. --this command removes the PL/Sample language
  20. --
  21. drop procedural language 'plsample';
  22. .fi
  23. .SH "SEE ALSO"
  24. create_language(l).
  25. .SH BUGS
  26. No checks are made if functions or trigger procedures registered
  27. in this language still exist. To reenable them without having to
  28. drop and recreate all the functions, the pg_proc's prolang attribute
  29. of the functions must be adjusted to the new object ID of the
  30. recreated pg_language entry for the PL.