Unsubscribe

2013-07-12 Thread Sadananda Hegde

Re: Hive Query

2013-07-12 Thread Edward Capriolo
Hive DOES ssupport in but it is only row wise in. The query you are trying to do should work. On Fri, Jul 12, 2013 at 9:46 AM, Dean Wampler wrote: > Use a semi-join, which is more or less the same thing.. You might also see > if the having clause will help. > > dean > > On Fri, Jul 12, 2013 at

Re: Hive Query

2013-07-12 Thread Dean Wampler
Use a semi-join, which is more or less the same thing.. You might also see if the having clause will help. dean On Fri, Jul 12, 2013 at 6:13 AM, Manickam P wrote: > Hi, > > I need to run hive query like select * from employee where employee_id IN > (100,102). I came to know that hive does not s

Re: Hive Query

2013-07-12 Thread Nitin Pawar
Once you start a hive query, and abort your script it does not kill your job on hadoop so you will need to find that job on hadoop cluster and kill it. On Fri, Jul 12, 2013 at 5:20 PM, Manickam P wrote: > Hi, > > Thanks for your reply. I need one more info also. > I put hive queries in hql fil

RE: Hive Query

2013-07-12 Thread Manickam P
Hi, Thanks for your reply. I need one more info also. I put hive queries in hql file and using shell script i started executing it in background mode. even if i kill the script process it is keep on executing queries. How to kill the hive query execution which is in hql file? Thanks, Manickam

Re: Hive Query

2013-07-12 Thread Nitin Pawar
Manickam, How does support the in clause what hive does not support is "subquery inside in clause" you can perfectly run the query you have written but currently as per my knowledge hive does not let you do this "select * from table where coln in (select coln from table where coln=blah)" if you

Hive Query

2013-07-12 Thread Manickam P
Hi, I need to run hive query like select * from employee where employee_id IN (100,102). I came to know that hive does not support IN clause.Then what is the effective replacement for this? i need to execute around 250 inputs. I'm using hive 0.9.0 version. Please guide me. Thanks, Manickam P