[hive 报错]:FAILED: SemanticException Line 0:-1 Partition not found

问题:FAILED: SemanticException Line 0:-1 Partition not found ''19''

这种情况一般是你创建的表是多级分区(比如day,hour),若操作时指定一个分区是不可以的(只加day或者hour)

正确姿势:

insert overwrite table test partition (
    day='2019-08-22',
    hour='17'
)

 

你可能感兴趣的:(Hive)