Hive Book

2019-02-14 Thread Dan Horne
Can anyone recommend a good book on current Hive? The ones I've come across on Amazon have reviews stating that they're quite outdated.

Re: HS2: Permission denied for my own table?

2019-04-17 Thread Dan Horne
Are you using SQL Authorisation? If you create tables using the hive cli, you won't be able to select the table from a connection to the hive server. On Thu, 18 Apr 2019 at 04:34, Alan Gates wrote: > See >

Re: Subquery failing - is there an alternative?

2019-12-09 Thread Dan Horne
8 AM, Devopam Mittra wrote: > > Please try with subquery alias . > Regards > > > On Mon, Dec 9, 2019, 6:06 AM Dan Horne wrote: > >> Hi All >> >> I'm trying to run the following subquery but it returns an error that >> says "cannot recognize

Subquery failing - is there an alternative?

2019-12-08 Thread Dan Horne
Hi All I'm trying to run the following subquery but it returns an error that says "cannot recognize input near 'select' 'max' '(' in expression specification" select id, first_name, last_name, change_seq from person_source where change_seq > (select max(change_seq) from person_target);