Member since
01-17-2018
4
Posts
0
Kudos Received
0
Solutions
11-12-2018
06:06 PM
You need to use CONCAT_WS (separator,col1,col2,...colX) : select CONCAT_WS ('',c12,c13,c14,c15,c16) FROM your_table; , Use CONCAT_WS , where you give the separator as 1st term and then the list of columns to concat : select CONCAT_WS (' ',c12,c13,c14,c15,c16) from your_table) ;
... View more
03-06-2018
09:13 AM
@tomoya yoshida It seems you have increased hive.tez.container.size but yarn.scheduler.maximum-allocation-mb is still set to 2250 MB. Can you try increasing yarn.scheduler.maximum-allocation-mb to more than 3750 MB. you need to accordingly set the value of this yarn.nodemanager.resource.memory-mb property. Let me know if it doesn't work after changing this.
... View more
01-30-2018
12:13 PM
1 Kudo
I guess you are using HIVE > 0.13, before i am not sure if IN/NOT IN is implemented. But even then, there is this limitation:
IN/NOT IN subqueries may only select a single column. So you might try to append the values into one result column, or you try a left join with a condition like TBL2.COL1 is null
... View more
01-17-2018
08:19 PM
You can also run DESC <TABLE_NAME> command from CLI or BEELINE.
... View more