摘要:
1. https://www.pythian.com/blog/statistics-gathering-and-sql-tuning-advisor/ Our monitoring software found a long running job on one of our client’s d 阅读全文
摘要:
1.############# #!/bin/ksh if [ ! -z $TNS_ADMIN ]; then export TNS_ADMIN=`dirname $TNS_ADMIN` else export TNS_ADMIN=$ORACLE_HOME/network/admin fi echo 阅读全文
摘要:
set -x与set +x指令 用于脚本调试。set是把它下面的命令打印到屏幕 set -x 是开启 set +x是关闭 set -o是查看 (xtrace),set去追中一段代码的显示情况。 执行set -x后,对整个脚本有效。 [root@mybox bin]# ls -l /bin/bash 阅读全文