ORA-27060: could not set close-on-exec bit on file

文档解释

ORA-27060: could not set close-on-exec bit on file

Cause: fcntl system call returned error

Action: check errno

ORA-27060错误用于指示ORACLE不能将close-on-exec位设置为某一文件。close-on-exec位决定当子进程结束时,文件描述符是关闭还是被保留下来。

官方解释

ORA-27060:error created on background process

Cause: A system call failed during the spawn of a background process. The system call was fcntl and the error code was ‘error code’.

Action: Refer to the operating system documentation.

常见案例

最常见的情况是,当ORACLE根据需要启动新进程来处理它要处理的任务时,出现该错误提示。

一般处理方法及步骤

1、检查操作系统文档以获取有关失败fcntl系统调用的解释。

2.检查操作系统的可用资源(存储空间,内存等)是否不足,或检查系统级限制,以防止新进程的顺利启动。

3.增加此文件所在文件系统内存,并重新启动新进程,以解决此错误,如果需要的话。

4.请不要修改绑定字符,为防止出现不可恢复的情况,请务必充分了解修改的影响。

你可能感兴趣的