Linux-BShell中调⽤sqlplus执⾏sql⽂件,如何取得返回值有时候会想在Shell中调⽤⼀个存储过程啊等等,做法⼀般就是把这个存储过程给放在⼀个sql⽂件中,然后调⽤sqlplus来执⾏该sql⽂件。
但是问题是,该如何返回该sql⽂件执⾏结果,即返回值呢?
答案就是在sql⽂件中定义变量。参考代码如下:
<<shell--Test.sh>> ※红⾊部分为取得返回值。
sqlplus -s S001/PASSWORD@TEST_1 @/home/s001/S001.sql << EOF
exit $?
EOF
EXCODE=$?
if [ $EXCODE -ne 0 ]; then
echo "error :sqlplus  Error"
exit 1
fi
exit 0
<<S001.sql>> ※红⾊部分为设置并返回值
WHENEVER SQLERROR EXIT sql.sqlcode;
-- error code definition
shell代码VARIABLE v_error_cd NUMBER;
DECLARE
nowDate VARCHAR(8);
BEGIN
--SQL return value (1:error、0:normal)
:v_error_cd := 1;
nowDate := '20200101';
select TO_CHAR(sysdate,'yyyyMMdd') INTO nowDate from dual;
if nowDate > '20200505'
then
:v_error_cd := 0;
end if;
END;
/
-- return error code
EXIT :v_error_cd;
这样就可以了。
注意:全局变量的使⽤ 前⾯要加[ : ]才⾏哦。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。