zoukankan      html  css  js  c++  java
  • 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:

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

    3. Drop the problematic job.

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

  • 相关阅读:
    Kafka笔记—可靠性、幂等性和事务
    简易 bokeh 图像散景效果算法实现
    unisound_asr 云知声 语音识别 python版接口
    分享用于学习C++音频处理的代码示例
    集 降噪 美颜 虚化 增强 为一体的极速图像润色算法 附Demo程序
    快速双边滤波 附完整C代码
    pixel art之 hqx 算法
    这一路走来,冷暖自知 (附算法demos)
    票据OCR前预处理 (附Demo)
    学习图像算法阶段性总结 (附一键修图Demo) 2016.04.19更新demo
  • 原文地址:https://www.cnblogs.com/oracle-ziyuhou/p/11832868.html
Copyright © 2011-2022 走看看