output/echo a meesage in hql/ hive query language
hadoop, hive
Solution
In the *.hql file insert a line as below in between the two hive queries.
!echo "table 1 results obtained";
Problem
I need to create a hive.hql as follows. HIVE.hql: ``` select * from tabel1; select * from table2; ``` My question is: can i echo any message to my console like " results from table1 is obtained " in the hql code after table one is created like ``` select * from tabel1; echo/print/output ("table 1 results obtained"); select * from table2; ```