ORA-27478: job “string.string” is running
Cause: An attempt was made to drop a job that is currently running.
Action: Stop the job and then reissue the command, or reissue the command specifying the force option to stop the job first.
这个错误表明某个ORACLE数据库作业正在运行中,而且不能被任何操作所打断。
这是一个普通的情况,并且可以使用常规的ORACLE数据库管理工具来检查和处理该错误。
1. 确定哪个作业正在运行:在SQL * Plus中,可以使用以下查询来确定哪个作业正在运行:SELECT * FROM dba_jobs;
2. 通过使用以下语句来停止它:EXECUTE DBMS_JOB.STOP( job_no );
3. 停止出现ORA-27478错误之前要确保任何正在运行的作业任务正确地提交。