PostgreSQL : 기본 권한을 확인하는 SQL
3205 단어 PostgreSQLPostgreSQL 역방향 Tips
SELECT rolname as owner,
nspname as schema,
case defaclobjtype
when 'r' then 'table'
when 'S' then 'sequence'
when 'f' then 'function'
when 'T' then 'type'
when 'n' then 'schema'
else 'other'
end as type,
defaclacl as access_privileges
FROM pg_default_acl acl
JOIN pg_namespace ON acl.defaclnamespace = pg_namespace.oid
JOIN pg_authid on acl.defaclrole = pg_authid.oid
order by owner, schema, type
;
실행 결과의 예:
rolename=xxxx -- privileges granted to a role
=xxxx -- privileges granted to PUBLIC
r -- SELECT ("read")
w -- UPDATE ("write")
a -- INSERT ("append")
d -- DELETE
x -- REFERENCES
t -- TRIGGER
X -- EXECUTE
U -- USAGE
C -- CREATE
c -- CONNECT
T -- TEMPORARY
arwdxt -- ALL PRIVILEGES (for tables)
* -- grant option for preceding privilege
/yyyy -- role that granted this privilege
Reference
이 문제에 관하여(PostgreSQL : 기본 권한을 확인하는 SQL), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/suin/items/755a0c822e7612f2d9d3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)