drop_user.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_user.l,v 1.2 1998/06/24 13:21:26 momjian Exp $
  4. .TH "DROP USER" SQL 01/26/98 PostgreSQL PostgreSQL
  5. .SH NAME
  6. drop user -- drop user from within a PostgreSQL instance
  7. .SH SYNOPSIS
  8. .nf
  9. fBdrop userfR username
  10. .fi
  11. .SH DESCRIPTION
  12. .BR "drop user"
  13. statement removes the named user from a PostgreSQL instance, along with
  14. any databases owned by the user.  It does not remove tables, views, or
  15. triggers owned by the named user in database not owned by the user.  This
  16. statement can be used in the place of destroyuser(1), regardless of how
  17. the user was created. 
  18. .SH EXAMPLES
  19. .nf
  20. ---
  21. --- Drop a user
  22. ---
  23. drop user tab;
  24. .fi
  25. .SH "SEE ALSO"
  26. alter_user(l), create_user(l).