重庆思庄Oracle、Redhat认证学习论坛
标题:
PG中删除用户
[打印本页]
作者:
郑全
时间:
2024-11-3 17:36
标题:
PG中删除用户
有时,我们删除用户时,直接报错:
postgres=# drop user test;
ERROR: role "test" cannot be dropped because some objects depend on it
DETAIL: owner of table t
这时,如果只有几个对象,一一删除,也行,但如果有很多对象,想快速删除,可以吗?
答案是肯定的
先删除 该用户所属对象
postgres=# drop owned by test;
DROP OWNED
再删除用户即可
postgres=# drop user test;
DROP ROLE
欢迎光临 重庆思庄Oracle、Redhat认证学习论坛 (http://bbs.cqsztech.com/)
Powered by Discuz! X3.2