ORA-39171: Job is experiencing a resumable wait. string ORACLE 报错 故障修复 远程处理
文档解释
ORA-39171: Job is experiencing a resumable wait. string
Cause: The Data Pump job is stalled with one or more of its sessions having a resumable wait. Resumable waits are typically caused by a non-expandable tablespace running out of space. The follow-on message describes the nature of the wait.
Action: Correct the condition causing the wait. This will typically involve adding datafiles to the tablespace that is full.
。
ORA-39171错误的官方解释是:表明在Data Pump作业过程中发生可以重新开始的等待操作,即一个操作无法继续,但Data Pump可以在稍后重新启动该作业。
案例:
当导出数据时,Data Pump可能等待某些操作完成才能继续,最常见的情况是,当Data Pump试图将数据库中的数据导出时,数据库由于性能问题的原因可能会暂停数据导出。
一般处理方法及步骤
1.检查可重新启动的等待操作原因,否则Data Pump将再次感受到相同的等待条件;
2.进入Data Pump对话框,并使用“alter job abort”命令中止Data Pump作业;
3.使用“alter job resume”恢复Data Pump作业;
4.使用“alter job start_job”命令开始Data Pump作业;
5.使用“show parameter session”检查Data Pump会话参数,确保它也可以运行;
6.使用“show parameter dump”检查Data Pump工作参数,确保它也可以完成;
7.检查系统资源,同时检查磁盘空间及安装物的临界状况,以确保Data Pump作业能在安全的状态下完成;
8.重新启动Data Pump作业,并监视Data Pump任务的状态。