SQL/Redshift
Redshift : grant (table 권한 부여, grant permission)
CosmosProject
2024. 5. 23. 19:21
728x90
반응형
Redshift에서 어떤 Table에 대한 권한을 부여하기 위해선 grant 구문을 사용합니다.
Syntax
grant grant_option_for on table_name to user/role
구문은 대략적으로 위와 같습니다.
- grant_option_for
grant_option_for는 어떤 권한을 부여(grant)할지를 명시하는 부분입니다.
select
insert
update
delete
drop
references
alter
truncate
all
등이 있습니다.
- table_name
권한을 grant할 대상 table 이름을 명시합니다.
- user/role
어떤 user 또는 role에게 권한을 부여할지를 명시합니다.
grant select on test_table to test_user_1;
예시는 다음과 같습니다.
참고
https://docs.aws.amazon.com/ko_kr/redshift/latest/dg/r_GRANT.html
728x90
반응형