云数据库 GAUSSDB-SET ROLE:示例

时间:2024-11-02 18:48:31

示例

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
--创建角色paul。
openGauss=# CREATE ROLE paul IDENTIFIED BY 'xxxxxxxxxx';

--设置当前用户为paul。
openGauss=# SET ROLE paul PASSWORD 'xxxxxxxxxx';

--查看当前会话用户,当前用户。
openGauss=# SELECT SESSION_USER, CURRENT_USER;

--重置当前用户。
openGauss=# RESET role;

--删除用户。
openGauss=# DROP USER paul;
support.huaweicloud.com/distributed-devg-v2-gaussdb/gaussdb_v5r2c10_0606.html