ORA-27468

简介: job无法删除。

27468, 00000, "\"%s.%s\" is locked by another process"
// *Cause: An attempt was made to read or modify the state of the named
// scheduler object when another process was also updating the same
// object and held the lock.
// *Action: Retry the operation. Scheduler locks are held for a very
// short duration. If the error persists, contact Oracle Support.

Since the documentation for this message said to try again later, you waited, but have continued to receive the same error message.

To implement the solution, please execute the following steps:

  1. Check the value for the job_queue_processes:

SQL> show parameter job

NAME TYPE VALUE


job_queue_processes integer 1000
SQL>

  1. Stop the cjq0 process.

SQL> show parameter job

NAME TYPE VALUE


job_queue_processes integer 1000
SQL> alter system set job_queue_processes=0;

System altered.

SQL> show parameter job

NAME TYPE VALUE


job_queue_processes integer 0
SQL>

This may require a kill -9 if on Unix or Linux.
  1. Drop the problematic job.
  2. Restart the cjq0 process.

    Reset the job_queue_processes back to the original setting (from show parameter command) using

     SQL> alter system set job_queue_processes=<old value>;
    

摘自:文档 ID 330725.1

相关文章
|
6月前
|
网络协议
ORA-12557
ORA-12557
|
Oracle 关系型数据库 数据库
ORA-00742 ORA-00312特殊恢复
ORA-00742 ORA-00312特殊恢复
357 0
|
Oracle 关系型数据库
ora.chad
ora.chad 进程描述,和作用。
2905 0
|
关系型数据库 网络性能优化 容器
ora.qosmserver
ora.qosmserver 作用
3216 0
|
Oracle 关系型数据库
|
SQL Oracle 关系型数据库
|
关系型数据库 Oracle 安全
|
机器学习/深度学习 关系型数据库 Oracle
1025ORA-00600[kkpo_rcinfo_defstgdelseg]
[20161025]ORA-00600 [kkpo_rcinfo_defstgdelseg], [xxxx].txt --链接http://www.anbob.com/archives/2745.html,重复操作,做1个记录。
1239 0
|
SQL Oracle 关系型数据库
ORA-00704、ORA-39700处理
文章版权所有Jusin Hao(luckyfriends),支持原创,转载请注明。 原来的数据库11.2.0.1,现在安装的是11.2.0.3 SQL> alter database open; alter database open ...
974 0
|
Oracle 关系型数据库 Go
ORA-32017 ORA-00096问题
<div style="font-family:'lucida Grande',Verdana,'Microsoft YaHei'; font-size:14px; line-height:23px"> <div><br></div> <div><br></div> <div>1</div> <div><br></div> <div>SQL&gt; alter system se
3271 0