我正在尝试找出一种方法来整理由Cron创建的Oracle Recover日志文件...
目前,我们的Oracle备用恢复过程由Cron每15分钟使用以下命令调用:
0,15,30,45 * * * * /data/tier2/scripts/recover_standby.sh SID >> /data/tier2/scripts/logs/recover_standby_SID_`date +\%d\%m\%y`.log 2>&1
Run Code Online (Sandbox Code Playgroud)
这会创建如下所示的文件:
$ ls -l /data/tier2/scripts/logs/
total 0
-rw-r--r-- 1 oracle oinstall 0 Feb 1 23:45 recover_standby_SID_010213.log
-rw-r--r-- 1 oracle oinstall 0 Feb 2 23:45 recover_standby_SID_020213.log
-rw-r--r-- 1 oracle oinstall 0 Feb 3 23:45 recover_standby_SID_030213.log
-rw-r--r-- 1 oracle oinstall 0 Feb 4 23:45 recover_standby_SID_040213.log
-rw-r--r-- 1 oracle oinstall 0 Feb 5 23:45 recover_standby_SID_050213.log
-rw-r--r-- 1 oracle oinstall 0 Feb 6 23:45 recover_standby_SID_060213.log
-rw-r--r-- 1 oracle oinstall 0 …Run Code Online (Sandbox Code Playgroud) 下午全部
我们有一个在Windows Server上运行的应用程序,需要多达50个智能卡才能连接到主机应用程序服务器.
这对我们现有的Server 2003/2008安装没有任何问题.
但是,当我们来测试Server 2012 R2上的应用程序时,只会显示10个智能卡.所有USB设备都能正确识别,但我们的pcsc测试应用程序只能找到10个终端.
有没有人遇到过这个问题?任何已知的修复?
干杯
加文