반응형
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
- Excel
- Apache
- PostgreSQL
- string
- SQL
- Mac
- gas
- Google Spreadsheet
- Kotlin
- Tkinter
- django
- Redshift
- Java
- array
- PySpark
- PANDAS
- google apps script
- list
- matplotlib
- numpy
- math
- GIT
- dataframe
- c#
- hive
- Google Excel
- Github
- 파이썬
- Python
Archives
- Today
- Total
목록Schema (2)
달나라 노트
Redshift : grant usage on schema, revoke usage on schema (schema 권한 부여, 권한 회수, schema 접근 권한 부여)
Redshift에서 특정 schema에 대한 접근 권한을 부여하려면 grant, revoke syntax를 이용해서 간단하게 권한을 부여하거나 회수할 수 있습니다. Syntaxgrant usage on schema schema_name to user_name; 위처럼 grant를 이용하여 schema에 대한 접근 권한을 특정 유저에게 부여할 수 있습니다. revoke usage on schema schema_name from user_name; 위처럼 revoke를 이용하여 schema에 대한 접근 권한을 특정 유저로부터 회수할 수 있습니다.
SQL/Redshift
2024. 7. 12. 19:11