반응형
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 |
Tags
- Redshift
- array
- c#
- Java
- PANDAS
- Excel
- Google Excel
- matplotlib
- Google Spreadsheet
- string
- google apps script
- Python
- django
- gas
- Tkinter
- PostgreSQL
- 파이썬
- SQL
- numpy
- PySpark
- Apache
- list
- math
- Kotlin
- dataframe
- Github
- Mac
- GIT
- hive
Archives
- Today
- Total
목록revoke (1)
달나라 노트
Redshift : revoke (table 권한 제거, revoke permission)
Redshift에서 어떤 Table에 대한 권한을 제거하기 위해선 revoke 구문을 사용합니다. Syntaxrevoke grant_option_for on table_name from user/role 구문은 대략적으로 위와 같습니다. - grant_option_forgrant_option_for는 어떤 권한을 회수(revoke)할지를 명시하는 부분입니다.selectinsertupdatedeletedropreferencesaltertruncateall등이 있습니다. - table_name권한을 revoke할 대상 table 이름을 명시합니다. - user/role어떤 user 또는 role에게서 권한을 회수할지를 명시합니다. revoke select on test_table from test_u..
SQL/Redshift
2024. 5. 23. 19:01