I am trying to export the data from hive table as below but it is generating file with tab as delimiter. Is it possible to specify the delimiter as comma or tab when exporting it?
hive -e "
use default;
set hive.cli.print.header=true;
select * from test1;
" > /temp/test.txt (or .csv)
Thanks J