In Hive on virtual Machine, I have created a table named mytable and inserted a few records.
When I execute this query:
select * from mytable order by id
I am getting an error:
Error: java.lang.RuntimeException: org.apache.hadoop.hive.ql.metadata.HiveException: Hive Runtime Error while processing row (tag=0)
Additional Information with schema,query and data is as follows,
hive> describe mytable;
OK
id int
name string
addr string
Time taken: 0.281 seconds
hive> select * from mytable;
OK
2 tanishq akola
1 ram kk
Time taken: 0.271 seconds
Can anyone help?
show create table mytable
- David דודו Markovitz