Re: Unsubscribe

2018-06-09 Thread Lefty Leverenz
Xiaobin She, to unsubscribe please send a message to user-unsubscr...@hive.apache.org as described here: Mailing Lists . Thanks. -- Lefty On Sat, Jun 9, 2018 at 11:07 AM Xiaobin She wrote: > Unsubscribe >

Unsubscribe

2018-06-09 Thread Xiaobin She
Unsubscribe

Re: Which version of Hive can hanle creating XML table?

2018-06-09 Thread Jörn Franke
Well you are always free to create a Serde on top that works with abstractSerde in any version. I don’t think it will be difficult since the input format is already there. I don’t know exactly when the interface SerDe was removed. > On 9. Jun 2018, at 09:09, Mich Talebzadeh wrote: > > thanks J

Re: Which version of Hive can hanle creating XML table?

2018-06-09 Thread Mich Talebzadeh
thanks Jorn. The only alternative is to use xpath UDF? Works as shown below but tedious Like the example below *$cat employees.xml* 1 Satish Kumar Technical Lead 2 Ramya Testing *Step:1 Bring each record to one line, by executing below command* $cat employees.xml | tr -d '&' | tr '\n' ' ' |