Hi Eugene,
I ran the below query and the hive complains that Hive test is not an acid complaint table. I dont get it because the table i am updating is an ORC table(HiveExample ) and HiveTest is an external table .
update HiveExample set Commissionflag=’F’ where id n (select HiveExample.id from HiveExample join HiveTest on HiveExample.id = HiveTest.id)
When i changed the HIVETEST into an ORC from an external table , the query worked…For an update join query to work, is it recommended that all the tables in the query should be of ORC format.???
Thanks