postgres数据库查看用户权限


1、查看某用户的表权限

select * from information_schema.table_privileges where grantee=‘user_name‘;

2、查看usage权限表

select * from information_schema.usage_privileges where grantee=‘user_name‘;

3、查看存储过程函数相关权限表

select * from information_schema.routine_privileges where grantee=‘user_name‘;

4、建用户授权

create user user_name;
alter user user_namewith password ‘‘;
alter user user_namewith CONNECTION LIMIT  20;#连接数限制





本文出自 “composer” 博客,请务必保留此出处http://zuoqujia.blog.51cto.com/9151800/1438179

postgres数据库查看用户权限,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。