shell脚本实现killOracle指定用户进程

前端之家收集整理的这篇文章主要介绍了shell脚本实现killOracle指定用户进程前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

#!/bin/ksh

su - oracle << !

echo "select 'alter system kill session '''||sid||''||','||serial#||''';' from v\\\$session where username='C##SCOTT';" > sel.sql

sqlplus / as sysdba <<EOF @sel.sql 1>result.log 2>&1

exit

EOF

cat result.log | grep "alter system kill session" 1>exc.sql 2>&1

sqlplus / as sysdba <<EOF @exc.sql 1>>result.log 2>&1

exit

EOF

!

原文链接:https://www.f2er.com/bash/392423.html

猜你在找的Bash相关文章