码迷,mamicode.com
首页 > 数据库 > 详细

postgres数据库查看用户权限

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

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

postgres数据库查看用户权限

标签:postgres   权限   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!