云数据库 GAUSSDB-CLEAN CONNECTION:示例

时间:2024-01-23 20:09:30

示例

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
--创建jack用户。
postgres=# CREATE USER jack PASSWORD 'xxxxxxxxxx';

--删除与数据库template1相关的当前CN节点与dn1和dn2节点的空闲/无效连接。
postgres=# CLEAN CONNECTION TO NODE (dn_6001_6002,dn_6003_6004) FOR DATABASE template1;

--删除与用户jack相关的当前CN节点与dn1节点的空闲/无效连接。
postgres=# CLEAN CONNECTION TO NODE (dn_6001_6002) TO USER jack;

--删除与数据库postgres相关的当前CN节点与所有节点的连接。
postgres=# CLEAN CONNECTION TO ALL FORCE FOR DATABASE postgres;

--删除用户jack。
postgres=# DROP USER jack;
support.huaweicloud.com/devg-v1-gaussdb/gaussdb_devg_0522.html