我有一些insert语句要在配置单元中运行。我计划将它们放在.hql文件中,并通过beeline-f选项运行它。是否有一种方法可以在插入之间回显一些日志消息,以便了解进度。比如:回显“开始插入…”插入1echo“插入1完成”插入2echo“插入脚本已完成”我试着使用linux shell命令echo as来放置echo语句!回音“”但它不把回声当作命令
cczfrluj1#
set msg = "Starting Insert"; set msg; insert into .... ; set msg = "Insert complete"; set msg;
pu3pd22g2#
!sh回音。。。
!sh echo "Starting the inserts ........." insert ... !sh echo "Insert 1 complete" insert ... !sh echo "Insert script is complete"
2条答案
按热度按时间cczfrluj1#
pu3pd22g2#
!sh回音。。。