Hive输出到CSV

hive -e "set hive.cli.print.header=true; select * from data_table where some_query_conditions" | sed 's/[\t]/,/g'  > hhd.csv
然后导出的数据编码为utf-8,需要进行转码。
iconv -f UTF-8 -t GBK XXX.csv to XXX_gbk.csv

你可能感兴趣的:(hive,hadoop,数据仓库)