linux sql语句传参数,Linux/Unix shell 参数传递到SQL脚本

3、通过定义变量的方式来传递参数

robin@SZDB:~/dba_scripts/custom/awr> more tmp3.sh

#!/bin/bash

if [ -f ~/.bash_profile ]; then

. ~/.bash_profile

fi

if [ -z "${1}" ] || [ -z "${2}" ] || [ -z "${3}" ] ;then

echo "Usage: "

echo "      `basename $0` "

read -p "please input begin ORACLE_SID:" ORACLE_SID

read -p "please input begin date and time(e.g. yyyymmddhh24):" begin_date

read -p "please input end date and time(e.g. yyyymmddhh24):" end_date

else

ORACLE_SID=${1}

begin_date=${2}

end_date=${3}

fi

export ORACLE_SID begin_date end_date

#Method 3: pass the parameter to global variable firstly.

sqlplus -S " / as sysdba" <

define begin_date=$begin_date

define end_date=$end_date

prompt "variable value for begin_date is: &begin_date"

prompt "variable value for end_date id : &end_date"

@/users/robin/dba_scripts/custom/awr/tmp3.sql begin_date end_date

exit;

EOF

exit

robin@SZDB:~/dba_scripts/custom/awr> more tmp3.sql

SELECT snap_id, dbid, snap_level

FROM dba_hist_snapshot

WHERE TO_CHAR (begin_interval_time, 'yyyymmddhh24') = '&begin_date'

AND TO_CHAR (end_interval_time, 'yyyymmddhh24') = '&end_date';

exit;0b1331709591d260c1c78e86d0c51c18.png

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值