我有一个执行sqlplus
命令的计划任务,并提供了用户名和密码。
间歇地发生ORA-12170: TNS:Connect timeout occurred
。发生这种情况后,SQL*Plus
要求提供一个用户名,该用户名永远不会超时,可以无限期地暂停我的任务。
我该如何防范?是否有任何命令行选项可以阻止这种情况?
任务批处理文件
...
sqlplus user/\"password\"@database@script.sql >> "script.log"
script.sql
START TRANSACTION;
call schema.sync_task();
COMMIT;
quit;
成功的日志
SQL*Plus: Release 12.1.0.2.0 Production on Mon Sep 10 22:15:00 2018
Copyright (c) 1982, 2014, Oracle. All rights reserved.
Last Successful login time: Mon Sep 10 2018 22:10:00 -04:00
Connected to:
Oracle Database 12c Standard Edition Release 12.1.0.2.0 - 64bit Production
With the Automatic Storage Management option
SP2-0310: unable to open file "TRANSACTION.sql"
Call completed.
Commit complete.
Disconnected from Oracle Database 12c Standard Edition Release 12.1.0.2.0 - 64bit Production
With the Automatic Storage Management option
失败的日志
SQL*Plus: Release 12.1.0.2.0 Production on Mon Sep 10 22:20:00 2018
Copyright (c) 1982, 2014, Oracle. All rights reserved.
ERROR:
ORA-12170: TNS:Connect timeout occurred
Enter user-name:
答案 0 :(得分:0)
我没有找到一个干净的解决方案,但我确实找到了一个简单的解决方案。
我修改了计划任务的设置,以使其在运行时间超过一个小时时停止运行。 10分钟会更好,但这不是任务计划程序中的选项。