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”的任何评论、建议或更正 此处