반응형
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
- gas
- Apache
- Google Excel
- PySpark
- list
- array
- Mac
- google apps script
- 파이썬
- Google Spreadsheet
- PANDAS
- Python
- Java
- math
- numpy
- Excel
- c#
- Kotlin
- Redshift
- SQL
- GIT
- matplotlib
- django
- PostgreSQL
- Tkinter
- dataframe
- hive
- Github
- string
Archives
- Today
- Total
목록2024/08/22 (5)
달나라 노트
Hive : Partition table 만들기, partition에 insert하기
Hive에서 partition table은 아래와 같이 만들 수 있습니다. SET hive.exec.dynamic.partition = true;SET hive.exec.dynamic.partition.mode = nonstrict;create table test_schema.test_table ( col1 bigint, col2 string, col3 float, col4 string, col5 timestamp)partitioned by ( col6 bigint, col7 bigint);insert into test_schema.test_table partition (col6,..
SQL/Apache Hive
2024. 8. 22. 19:19