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

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end "DROP USER" {bold} " removes the specified user from the database, along with any databases owned by the user. It does not remove tables, views, or triggers owned by the named user in databases 
  2. not owned by the user. This statement can be used in place of the destroyuser script, regardless of how the user was created. 
  3. " {} "Synopsis" {bold} "
  4. DROP USER username
  5. " {} "Usage" {bold} "
  6. To drop a user account: 
  7. DROP USER Jonathan;
  8. " {} "Notes" {bold} "
  9. DROP USER is a Postgres language extension. 
  10. Refer to CREATE USER and ALTER USER for information on how to create or modify user accounts. 
  11. "