linux shell 执行oracle存储过程
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
在linux下用shell执行oracle的存储过程
#### 函数
#### 说 明:执行oracle存储过程
#### 输入参数:{数据库tns}{数据库用户名}{数据库密码}{存储过程名}{批处理日期}
#### 输出参数:存储过程执行结果
function exe_proc
{
oracle_sid=$1
user_name=$2
user_pwd=$3
proc_name=$4
etl_date=$5
error_code=`
sqlplus -S -L /nolog<<EOF
connect $user_pwd/$user_pwd@$oracle_sid
set termout off;
set echo off;
set feedback off;
set heading off;
set pagesize 0;
var ora_return_code number;
call $proc_name($etl_date,:ora_return_code);
select :ora_return_code from dual;
quit
EOF`
echo $error_code
}
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献4条内容
所有评论(0)