如何檢視postgresql使用者許可權

petterchx發表於2021-09-11

如何檢視postgresql使用者許可權

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_name with password '';
alter user user_name with CONNECTION LIMIT  20;#連線數限制

Python學習網,大量的免費,歡迎線上學習!

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4606/viewspace-2835167/,如需轉載,請註明出處,否則將追究法律責任。

相關文章