반응형
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
- django
- Github
- SQL
- Excel
- GIT
- numpy
- gas
- c#
- google apps script
- math
- matplotlib
- Google Spreadsheet
- PANDAS
- list
- Tkinter
- array
- Redshift
- Google Excel
- Kotlin
- dataframe
- string
- 파이썬
- PostgreSQL
- Apache
- hive
- PySpark
- Java
- Python
- Mac
Archives
- Today
- Total
달나라 노트
Redshift : revoke (table 권한 제거, revoke permission) 본문
728x90
반응형
Redshift에서 어떤 Table에 대한 권한을 제거하기 위해선 revoke 구문을 사용합니다.
Syntax
revoke grant_option_for on table_name from user/role
구문은 대략적으로 위와 같습니다.
- grant_option_for
grant_option_for는 어떤 권한을 회수(revoke)할지를 명시하는 부분입니다.
select
insert
update
delete
drop
references
alter
truncate
all
등이 있습니다.
- table_name
권한을 revoke할 대상 table 이름을 명시합니다.
- user/role
어떤 user 또는 role에게서 권한을 회수할지를 명시합니다.
revoke select on test_table from test_user_1;
예시는 다음과 같습니다.
참고
https://docs.aws.amazon.com/ko_kr/redshift/latest/dg/r_REVOKE.html
728x90
반응형
'SQL > Redshift' 카테고리의 다른 글
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 : REGEXP_SUBSTR() (정규표현식 추출, 패턴 문자 추출, Regular Expression Substring) (0) | 2024.05.02 |
Redshift : current_database (현재 database 이름 출력) (0) | 2024.04.04 |
Redshift : current_user (현재 사용중인 user id 출력) (0) | 2024.04.04 |
Comments