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>
- 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=<old value>;
摘自:文档 ID 330725.1