ORA-13639: The CURRENT operation was interrupted because it timed OUT
該錯誤是由於SQL Tune Job執行超時導致,預設“Time Limit"是3600秒,即一個小時。
DECLARE
l_sql_tune_task_id CLOB;
BEGIN
l_sql_tune_task_id := DBMS_SQLTUNE.create_tuning_task (
begin_snap =>,
end_snap =>,
sql_id => '',
scope => DBMS_SQLTUNE.scope_comprehensive,
time_limit =>3600,
task_name => '',
description => 'Tuning task for statement SYS_AUTO_SQL_TUNING_TASK in AWR.');
DBMS_OUTPUT.put_line('l_sql_tune_task_id: ' || l_sql_tune_task_id);
END;
/
可以看到這裡time_limit設定成了3600秒,可透過以下方式修改:
BEGIN
DBMS_SQLTUNE.SET_TUNING_TASK_PARAMETER(task_name => 'SYS_AUTO_SQL_TUNING_TASK', parameter => 'TIME_LIMIT', value => 7200);
END;
/
DECLARE
l_sql_tune_task_id CLOB;
BEGIN
l_sql_tune_task_id := DBMS_SQLTUNE.create_tuning_task (
begin_snap =>,
end_snap =>,
sql_id => '',
scope => DBMS_SQLTUNE.scope_comprehensive,
time_limit =>3600,
task_name => '',
description => 'Tuning task for statement SYS_AUTO_SQL_TUNING_TASK in AWR.');
DBMS_OUTPUT.put_line('l_sql_tune_task_id: ' || l_sql_tune_task_id);
END;
/
可以看到這裡time_limit設定成了3600秒,可透過以下方式修改:
BEGIN
DBMS_SQLTUNE.SET_TUNING_TASK_PARAMETER(task_name => 'SYS_AUTO_SQL_TUNING_TASK', parameter => 'TIME_LIMIT', value => 7200);
END;
/
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10271187/viewspace-2132270/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [Clickhouse] Clickhouse 報SQLException : Read timed outSQLException
- svn“Previous operation has not finished; run ‘cleanup‘ if it was interrupted“報錯的解決方法
- 【解決】io.lettuce.core.RedisCommandTimeoutException: Command timed outRedisException
- 報錯(已解決)Command timed out after no timeout
- Failed to connect to ESP8266: Timed out waiting for packet headerAIHeader
- [debug] vagrant報錯mount.nfs: Connection timed outNFS
- WARNING: inbound connection timed out (ORA-3136)錯誤分析
- jdbc訪問KingbaseES資料庫SocketTimeoutException Read timed outJDBC資料庫Exception
- java.sql.SQLException:IO 錯誤:Socket read timed out !JavaSQLException
- 部分OPPO機型 AssetManager.finalize() timed out的修復
- io.lettuce.core.RedisCommandTimeoutException: Command timed out 解決辦法RedisException
- java.net.SocketTimeoutException: Read timed out異常解決方法JavaException
- oozie.action.hadoop.LauncherException: IO error Connection timed out: no further informationHadoopExceptionErrorORM
- Feign,HTTP連線超時問題SocketTimeoutException: Read timed outHTTPException
- 執行systemctl status ssh返回“Failed to get properties: Connection timed out”AI
- RTSP播放器EasyPlayer.js報錯The play() request was interrupted because video-only background media播放器JSIDE
- RetryableException: Read timed out executing導致服務假死無響應Exception
- java.sql.SQLRecoverableException: IO Error: Socket read timed out 排查歷程JavaSQLExceptionError
- 解決 ssh connect to host github.com port 22 Connection timed outGithub
- 【python】pip安裝庫時出現Read timed out.解決辦法Python
- CM agent 傳送heartbeat給CM server 不斷髮生 connection refused:timed outServer
- 關於遠端連線虛擬機器Network error: Connection timed out的問題虛擬機Error
- 【Azure Fabric Service】Service Fabric部署失敗問題 Provisioning of VM extension ConfigureVM has timed out.
- [重慶思莊每日技術分享]-CENTOS7.7 登入顯示:abrt-cli status' timed outCentOS
- interrupt(),interrupted() 和 isInterrupted() 的區別
- Putty或MobaXTerm無法連線VMware虛擬機器 報Network error: Connection timed out的解決方案虛擬機Error
- [Javascript] ++operationJavaScript
- Springboot2.x整合lettuce連線redis叢集報超時異常Command timed out after 6 second(s)Spring BootRedis
- tidb Error: Operation aborted by user answer '' (cliutil.operation_aborted)TiDBError
- macOS: sudo : Operation not permittedMacMIT
- 7.71 CURRENT_TIMESTAMP
- 7.70 CURRENT_DATE
- [Javascript] Encapsulate chunk operationJavaScript
- FSMO(Flexible Single Master Operation)FlexAST
- 3.4.3 Restoring the System to Normal OperationRESTORM
- group by event_name, operation
- cuda runtime error (801) : operation not supportedError
- Avoided redundant navigation to current location: "/users"IDENavigation
- MySQL中的CURRENT_TIMESTAMPMySql