ORA-09262: spdde: error terminating detached (background) process ORACLE 报错 故障修复 远程处理
文档解释
ORA-09262: spdde: error terminating detached (background) process
Cause: Could be out of resources
Action: See OSD error accompanying this message
ORA-09262错误消息指出,当TERMINATE操作正在终止一个正在运行的Background Process时发生错误。
官方解释
常见案例
正常处理方法及步骤
步骤1:查看当前会话的当前backgroud进程。
SQL> select sid, pid, serial#, status from v$session;
步骤2:终止进程的进程id号。
SQL> oradebug setospid 1200;
SQL> oradebug shutdown immediate;
步骤3:查看终止后是否仍有相关进程存在。
SQL> select sid, pid, serial#, status from v$session ;
步骤4:在继续进行任何操作前,请确保操作已经完成并解决错误本身。