- change format : yyyyMMdd -> yyyy-MM-DD
select regexp_replace(yyyymmdd, "(\\d{4})(\\d{2})(\\d{2})", "$1-$2-$3") from TABLE limit 10
- databaseがdefault以外の場合のAlter table add/drop partitionは
use db2;
alter table table_name add/drop [if exists] partition (dt='yyyymmdd');
のようにすること。
alter table db2.table_name add/drop [if exists] partition (dt='yyyymmdd');
は出来なかった。
理由はhive-server2ではないから?pythonから接続したから?
hive-server2ではないから?については
select * from db2.table_name, insert into db2.table_name select ~が出来たから関係ないかも