首页 > 数据库技术 > 详细

postgres数据库查看用户权限

时间:2014-07-15 11:02:11      阅读:641      评论:0      收藏:0      [点我收藏+]


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数据库查看用户权限,布布扣,bubuko.com

postgres数据库查看用户权限

原文:http://zuoqujia.blog.51cto.com/9151800/1438179

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!