标签: shell
db2连接到DB STATUS = $(db2“从XYZ中选择状态) echo $ STATUS
最初状态值为'4'或'NOT YET RUN'。
Shell脚本必须运行,直到状态值在数据库中以“0”更新并退出。
答案 0 :(得分:0)
如下:
until [ STATUS="$(db2 "SELECT STATUS FROM XYZ")" && $STATUS = 0 ] do # put rest of the code in this loop. done