반응형
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
- PANDAS
- 파이썬
- Kotlin
- Redshift
- dataframe
- GIT
- SQL
- matplotlib
- Google Spreadsheet
- hive
- numpy
- Tkinter
- Github
- Google Excel
- Apache
- Java
- c#
- PySpark
- math
- list
- Mac
- google apps script
- PostgreSQL
- gas
- string
- Excel
- django
- Python
- array
Archives
- Today
- Total
목록has_table_privilege (1)
달나라 노트
Redshift : has_table_privilege (특정 user의 table 권한 보유 여부 파악하기)
Syntaxhas_table_privilege(user_name, table_name, privilege) has_table_privilege() function은user_name이 table_name에 대해 privilege에 대한 권한을 가지고 체크합니다.권한을 가지고 있다면 true를 return하고권한이 없다면 false를 return합니다. select has_table_privilege('test_user', 'test_schema.test_table', 'select') as priv_yn;-- Resultpriv_yn true 위처럼 사용할 수 있습니다.test_user가test_schema.test_table에 대해select 권한이 있는지를 체크합니다. 만약 권한이 있다면 ..
SQL/Redshift
2024. 7. 12. 19:28