dropuser

删除数据库用户的核心实用程序

dropuser 是一个用于删除(移除)数据库用户的核心实用程序,本质上是 DROP ROLE 命令的包装器。

dropuser 添加于 PostgreSQL 7.0

用法

dropuser 在成功删除用户后不会输出任何内容。

源代码

dropuser 的源代码位于 src/bin/scripts/dropuser.c

更改历史记录

示例

dropuser 的基本用法示例

postgres=# \du
                                   List of roles
 Role name |                         Attributes                         | Member of 
-----------+------------------------------------------------------------+-----------
 admin     | Cannot login                                               | {newuser}
 newuser   |                                                            | {}
 postgres  | Superuser, Create role, Create DB, Replication, Bypass RLS | {}

postgres=# \q

postgres$ dropuser -h localhost newuser

psql (14.3)
Type "help" for help.

postgres=# \du
                                   List of roles
 Role name |                         Attributes                         | Member of 
-----------+------------------------------------------------------------+-----------
 admin     | Cannot login                                               | {}
 postgres  | Superuser, Create role, Create DB, Replication, Bypass RLS | {}

分类

核心实用程序用户和角色

参见

DROP ROLEDROP USERcreateuser

反馈

提交任何关于 "dropuser" 的评论、建议或更正 此处