Linux/Unix shell 参数传递到SQL脚本
admin
2023-02-04 11:20:03
0

在数据库运维的过程中,Shell 脚本在很大程度上为运维提供了极大的便利性。而shell 脚本参数作为变量传递给SQL以及SQL脚本也是DBA经常碰到的情形之一。本文主要讨论了如何将shell脚本的参数传递到SQL脚本之中并执行SQL查询。


1、启动sqlplus时执行脚本并传递参数


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

#!/bin/bash  


# ----------------------------------------------  

#  Set environment here  

#  Author : Robinson Cheng  

# ----------------------------------------------  


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. yyyymmddhh34):" begin_date  

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

else  

   ORACLE_SID=${1}  

   begin_date=${2}  

   end_date=${3}  

fi  


export ORACLE_SID begin_date end_date  


#Method 1: pass the parameter to script directly after script name  

sqlplus -S gx_adm/gx_adm @/users/robin/dba_scripts/custom/awr/tmp.sql $begin_date $end_date  


exit  


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

SELECT snap_id, dbid, snap_level  

 FROM dba_hist_snapshot  

WHERE TO_CHAR (begin_interval_time, 'yyyymmddhh34') = '&1'  

      AND TO_CHAR (end_interval_time, 'yyyymmddhh34') = '&2';  

exit;  



2、在SQL提示符下传递参数


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

#!/bin/bash  


# ----------------------------------------------  

#  Set environment here  

#  Author : Robinson Cheng  

# ----------------------------------------------  


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. yyyymmddhh34):" begin_date  

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

else  

   ORACLE_SID=${1}  

   begin_date=${2}  

   end_date=${3}  

fi  


export ORACLE_SID begin_date end_date  


#Method 2: pass the parameter in SQL prompt. Using the same method with method 1  

sqlplus -S " / as sysdba" <

@/users/robin/dba_scripts/custom/awr/tmp.sql $begin_date $end_date  

exit;  

EOF  

exit  



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


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

#!/bin/bash  


# ----------------------------------------------  

#  Set environment here  

#  Author : Robinson Cheng  

# ----------------------------------------------  


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. yyyymmddhh34):" begin_date  

   read -p "please input end date and time(e.g. yyyymmddhh34):" 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, 'yyyymmddhh34') = '&begin_date'  

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

exit;  



4、测试脚本


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

Usage:  

     tmp.sh  

please input begin ORACLE_SID:CNMMBO  

please input begin date and time(e.g. yyyymmddhh34):2013030709  

please input end date and time(e.g. yyyymmddhh34):2013030710  


  SNAP_ID       DBID SNAP_LEVEL  

---------- ---------- ----------  

    13877  938506715          1  


robin@SZDB:~/dba_scripts/custom/awr> ./tmp2.sh MMBOTST 2013030709 2013030710  


  SNAP_ID       DBID SNAP_LEVEL  

---------- ---------- ----------  

    36262 3509254984          1  


robin@SZDB:~/dba_scripts/custom/awr> ./tmp3.sh MMBOTST 2013030710 2013030711  

"variable value for begin_date is: 2013030710"  

"variable value for end_date id : 2013030711"  


  SNAP_ID       DBID SNAP_LEVEL  

---------- ---------- ----------  

    36263 3509254984          1  



5、小结


a、本文主要描述了将shell的参数传递给SQL脚本


b、方式1的用法是直接将shell变量跟在脚本之后, sqlplus userid/pwd @script_name $para1 $para2


c、方式2是启动sqlplus后在SQL提示符下来传递参数, SQL>@script_name $para1 $para2


d、方式3则是将shell变量的值先传递给define定义的变量,然后再传递给SQL脚本 SQL>@script_name var1 var2


e、注意方式3中SQL脚本的替代变量与define定义的变量名相同


oracle视频教程请关注:http://u.youku.com/user_video/id_UMzAzMjkxMjE2.html


相关内容

热门资讯

网民虚构自己钓鱼时发现尸体,被... 2026年6月22日,平舆县东皇街道居民凡某某为博取流量、吸引网友关注,拼凑多张图片剪辑制作短视频,...
“他们承受的痛苦还不够”,特朗... 据美国“阿克西奥斯新闻网(Axios)今天(7月23日)报道,美国总统特朗普在接受采访时透露,他正“...
急派超百名军医,美国准备地面战... 在加大空袭力度的同时,美军持续向中东增派战机、特种作战力量和后勤保障人员。与此同时,美军高层承认,单...
唐驳虎丨王虹、邓煜同获菲尔兹奖... 作者丨唐驳虎核心提要1. 本届国际数学家大会上,北大数院2007级校友王虹、邓煜同获菲尔兹奖,成为首...
菲尔兹奖获得者邓煜:爬山时破解... 作者:周盛楠 王僖妍·邓煜。(受访者供图)2026年7月23日,注定是改写中国数学历史的一天。邓煜、...
中国籍数学家王虹获菲尔兹奖 当地时间7月23日上午,2026年国际数学家大会在美国费城开幕,现场揭晓2026年菲尔兹奖得主。中国...
首次突破 屡创新高!一组数字解... 2026年上半年我国GDP同比增长4.7%经济韧性持续彰显在已经出炉的经济数据中更值得关注的还有“含...
男主播卖惨,66岁患癌老太花光... 今年3月,沈阳66岁的张阿姨在家养病期间刷视频时,被一名IP属地为湖北的男主播吸引。该主播主打演唱经...
松下智能马桶盖不喷水怎么回事 松下智能马桶盖不喷水怎么回事1、有时候新买的马桶在安装的时候工人有时候会不会告诉你需要开进水阀的,智...
松下智能马桶盖不喷水 1、有时候新买的马桶在安装的时候工人有时候会不会告诉你需要开进水阀的,智能马桶都是带有进水阀的,如果...