データパラメータをハイブスクリプトに渡していますが、動作していません。データ引数がHiveで期待通りに機能しない
SET yrmonth=concat(substr(to_date(${hiveconf:runningdate}),1,4),substr(to_date(${hiveconf:runningdate}),6,2));
SET fom=TRUNC(${hiveconf:runningdate},'MONTH');
SET lom=LAST_DAY(${hiveconf:runningdate});
USE cust_db;
SELECT saleid,podid,pname
FROM product
WHERE productln_yrmo=${hiveconf:yrmonth};
int型の列
SELECT cid,cname,cloc
FROM customer
WHERE customer_createddt >='${hiveconf:fom}'
AND customer_createddt <='${hiveconf:lom}'
AND cloc = 'AUS';
--customer_createddtがあなたのクエリから日付カラム
hive -hiveconf runningdate='2016-05-18' -f cust.hql
スタックオーバーフローへようこそ。コミュニティがあなたを助けることができるようにするには、最初にあなたの正確な問題とそれに関する特定の質問を指定する必要があります。 – rvighne
できるだけ早く手伝ってください。 – Rock