반응형
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
- c#
- Apache
- Google Excel
- dataframe
- Java
- Tkinter
- Mac
- string
- PySpark
- Google Spreadsheet
- SQL
- array
- gas
- PANDAS
- Python
- PostgreSQL
- Excel
- hive
- math
- list
- Redshift
- matplotlib
- numpy
- google apps script
- django
- Kotlin
- GIT
- Github
- 파이썬
Archives
- Today
- Total
달나라 노트
Redshift : has_schema_privilege (특정 user의 schema 권한 보유 여부 파악하기, schema 권한 보유 여부) 본문
SQL/Redshift
Redshift : has_schema_privilege (특정 user의 schema 권한 보유 여부 파악하기, schema 권한 보유 여부)
CosmosProject 2024. 7. 12. 19:38728x90
반응형
Syntax
has_schema_privilege(user_name, schema_name, privilege)
has_schema_privilege() function은
user_name이 schema_name에 대해 privilege에 대한 권한을 가지고 체크합니다.
권한을 가지고 있다면 true를 return하고
권한이 없다면 false를 return합니다.
select has_schema_privilege('test_user', 'test_schema', 'usage') as priv_yn
;
-- Result
priv_yn
true
위처럼 사용할 수 있습니다.
test_user가
test_schema에 대해
usage 권한(간단하게 schema 접근 권한이라고 보면 됩니다.)이 있는지를 체크합니다.
만약 권한이 있다면 true를 return하고
권한이 없다면 false를 return합니다.
FYI
https://docs.aws.amazon.com/ko_kr/redshift/latest/dg/r_HAS_SCHEMA_PRIVILEGE
728x90
반응형
'SQL > Redshift' 카테고리의 다른 글
Redshift : alter table ~ add column (table에 column 추가하기) (0) | 2024.07.25 |
---|---|
Redshift : pg_users (Redshift user list 추출) (0) | 2024.07.12 |
Redshift : has_table_privilege (특정 user의 table 권한 보유 여부 파악하기) (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 |
Comments