我的编程空间,编程开发者的网络收藏夹
学习永远不晚

ORA-27468: ""."" is locked by another process

短信预约 信息系统项目管理师 报名、考试、查分时间动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

ORA-27468: ""."" is locked by another process

You have a scheduler job that generated an error. When the error occurred, you attempted to disable the job to investigate the error, but received an ORA-27468 error message.

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:

  Check the value for the job_queue_processes:

SQL> show parameter job

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
job_queue_processes                  integer     1000
SQL>



2. 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.

Drop the problematic job.

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=;

摘自:文档 ID 330725.1

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

ORA-27468: ""."" is locked by another process

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

ORA-27468: ""."" is locked by another process

You have a scheduler job that generated an error. When the error occurred, you attempted to disable the job to investigate the err
2021-11-23

ORA-27468: “string.string” is locked by another process ORACLE 报错 故障修复 远程处理

文档解释ORA-27468: string.string is locked by another processCause: An attempt was made to read or modify the state of
ORA-27468: “string.string” is locked by another process ORACLE 报错 故障修复 远程处理
2023-11-05

编程热搜

目录