Member since
10-07-2018
8
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2453 | 10-26-2021 03:57 AM |
10-26-2021
04:04 AM
Hi Team, I have below requirement to convert the SQL server queries into hive. But i am not sure how to achive that as there is no pivot and unpivot available in hive. could you please help me with the hive equivalent queries for the below SQL queries? Query 1 ----------------- SELECT x,y,z FROM dbo.tbl1 UNPIVOT (split FOR check IN (1, y2, y3, y4, y5, y6, y7, y8, y9, y10)) AS splnpivot Query 2 ---------------- SELECT * FROM (SELECT a,b,c FROM tbl2) SRC PIVOT ( SUM(TOTAL_AMOUNT) FOR cbn_TYPE IN ([ONE TQ FOUR], [going loss], [COSTS LEAVING team sales], [profit], [check money])) AS PIV; Query 3 -------------- NULLIF (ISNULL(abc.Tc, 0) + ISNULL(abc.YR, 0), 0); Thanks in advance, Wasim
... View more
Labels:
- Labels:
-
Apache Hive
-
Apache Tez
10-26-2021
03:57 AM
Thank you all for your responses. This issue was because of credential problem and it's resolved now.
... View more
10-07-2021
12:21 PM
Hi Team, I have a requirement where I need to schedule an oozie work flow using shell action. Shell action is using a shell script which in turn will be calling a hql file which is available on HDFS location. I am not able to call that hql file from the shell script which I am using in shell action. I know using beeline - f parameters to use to call local files but can you please guide me to call a file which is on HDFS. Any help/suggestions will be highly appreciated. Thanks, Wasim
... View more
Labels:
- Labels:
-
Apache Ambari
-
Apache Hive
-
Apache Oozie