반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- gas
- GIT
- c#
- string
- SQL
- google apps script
- Tkinter
- Excel
- Github
- dataframe
- numpy
- Kotlin
- PySpark
- Python
- Redshift
- hive
- 파이썬
- Mac
- Google Excel
- Apache
- PostgreSQL
- array
- list
- django
- math
- Google Spreadsheet
- matplotlib
- PANDAS
- Java
Archives
- Today
- Total
달나라 노트
Redshift : has_table_privilege (특정 user의 table 권한 보유 여부 파악하기) 본문
SQL/Redshift
Redshift : has_table_privilege (특정 user의 table 권한 보유 여부 파악하기)
CosmosProject 2024. 7. 12. 19:28728x90
반응형
Syntax
has_table_privilege(user_name, table_name, privilege)
has_table_privilege() function은
user_name이 table_name에 대해 privilege에 대한 권한을 가지고 체크합니다.
권한을 가지고 있다면 true를 return하고
권한이 없다면 false를 return합니다.
select has_table_privilege('test_user', 'test_schema.test_table', 'select') as priv_yn
;
-- Result
priv_yn
true
위처럼 사용할 수 있습니다.
test_user가
test_schema.test_table에 대해
select 권한이 있는지를 체크합니다.
만약 권한이 있다면 true를 return하고
권한이 없다면 false를 return합니다.
select has_table_privilege('test_user', 'test_schema.test_table', 'select')
, has_table_privilege('test_user', 'test_schema.test_table', 'delete')
, has_table_privilege('test_user', 'test_schema.test_table', 'drop')
, has_table_privilege('test_user', 'test_schema.test_table', 'insert')
, has_table_privilege('test_user', 'test_schema.test_table', 'update')
;
select 뿐 아니라 다양한 table에 변경을 줄 수 있는 권한들에 대한 보유 여부를 알아볼 수 있습니다.
select t.*
, t.schemaname + '.' + t.tablename as full_tablename
, has_table_privilege('test_user', full_tablename, 'select')
from pg_tables as t
;
응용하면 위와 같은 방식으로 pg_tables를 이용하여 database에 존재하는 모든 테이블에 대해 특정 유저가 권한을 가지고 있는지 아닌지도 볼 수 있습니다.
https://cosmosproject.tistory.com/763
FYI
https://docs.aws.amazon.com/ko_kr/redshift/latest/dg/r_HAS_TABLE_PRIVILEGE.html
728x90
반응형
'SQL > Redshift' 카테고리의 다른 글
Redshift : pg_users (Redshift user list 추출) (0) | 2024.07.12 |
---|---|
Redshift : has_schema_privilege (특정 user의 schema 권한 보유 여부 파악하기, schema 권한 보유 여부) (0) | 2024.07.12 |
Redshift : grant usage on schema, revoke usage on schema (schema 권한 부여, 권한 회수, schema 접근 권한 부여) (0) | 2024.07.12 |
Redshift : grant (table 권한 부여, grant permission) (0) | 2024.05.23 |
Redshift : revoke (table 권한 제거, revoke permission) (0) | 2024.05.23 |
Comments