Welcome 微信登录

首页 / 数据库 / MySQL / Linux/Unix shell 参数传递到SQL脚本

在数据库运维的过程中,Shell 脚本在很大程度上为运维提供了极大的便利性。而shell 脚本参数作为变量传递给SQL以及SQL脚本也是DBA经常碰到的情形之一。本文主要讨论了如何将shell脚本的参数传递到SQL脚本之中并执行SQL查询。有关shell与SQL之间的变量传递,请参考:  Linux/Unix shell sql 之间传递变量 http://www.linuxidc.com/Linux/2013-01/78811.htm1、启动sqlplus时执行脚本并传递参数robin@SZDB:~/dba_scripts/custom/awr> more tmp.sh
#!/bin/bash# ----------------------------------------------
#  Set environment here
#  Author : Robinson Cheng
#  Blog  : http://blog.csdn.net/robinson-0612
# ----------------------------------------------if [ -f ~/.bash_profile ]; then
    . ~/.bash_profile
fiif [ -z "${1}" ] || [ -z "${2}" ] || [ -z "${3}" ] ;then
    echo "Usage: "
    echo "      `basename $0` <Oracle_SID> <begin_dat> <end_date>"
    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}
fiexport 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_dateexitrobin@SZDB:~/dba_scripts/custom/awr> more tmp.sql
SELECT snap_id, dbid, snap_level
  FROM dba_hist_snapshot
 WHERE TO_CHAR (begin_interval_time, "yyyymmddhh24") = "&1"
      AND TO_CHAR (end_interval_time, "yyyymmddhh24") = "&2";
exit;
  • 1
  • 2
  • 3
  • 4
  • 下一页
Oracle 11g(11.2.0) 手工建立数据库Oracle 隐藏参数:_undo_autotune相关资讯      Linux Shell  Unix shell  SQL脚本 
  • Linux基础知识:shell基础命令  (今 10:39)
  • Linux系统监控shell脚本  (04月09日)
  • Linux shell脚本编程  (03月01日)
  • Linux shell数组  (07月26日)
  • Linux Shell实现批量关闭局域网中  (03月10日)
  • Linux系统入门教程:如何知道当前  (11/27/2015 08:36:09)
本文评论 查看全部评论 (0)
表情: 姓名: 字数