当前位置: 技术问答>linux和unix
如何编写Shell,当SQL执行完毕后,继续调用Shell命令。
来源: 互联网 发布时间:2016-04-06
本文导语: 如:sqlplus ccbsbs/hx select * from acctransin_20080101_1; spool off; 上面的执行结束后,相继续执行下面的,可是执行不了 cat temp123.txt|sed -e '/^SQL>/d' -e '/^$/d' -e 's/ //g' > temp.txt echo "File Trans End!" 如何写呢! ...
如:sqlplus ccbsbs/hx
select * from acctransin_20080101_1;
spool off;
上面的执行结束后,相继续执行下面的,可是执行不了
cat temp123.txt|sed -e '/^SQL>/d' -e '/^$/d' -e 's/ //g' > temp.txt
echo "File Trans End!"
如何写呢!
spool off;
上面的执行结束后,相继续执行下面的,可是执行不了
cat temp123.txt|sed -e '/^SQL>/d' -e '/^$/d' -e 's/ //g' > temp.txt
echo "File Trans End!"
如何写呢!
|
我来举个例子,比如:XXX.sh :
tsql go
!
ls -l /
cat /etc/passwd
其中tsql是进入数据库的命令,其后
tsql go
!
ls -l /
cat /etc/passwd
其中tsql是进入数据库的命令,其后