ORA-27237: ELF file is not a relocatable object file ORACLE 报错 故障修复 远程处理
文档解释
ORA-27237: ELF file is not a relocatable object file
Cause: An ELF file was not the expected type.
Action: Supply the expected type of file.
Oracle 错误 ORA-27237 表示 ELF 文件(Executable and Linkable format (ELF)) 不是可重定位的目标文件。
官方解释
ORA-27237 出现,当 Oracle 无法将 ELF(Executable and Linkable format)文件识别为可重定位的对象文件时。
常见案例
当用户使用 create library 或 alter library 语句注册ELF文件到数据库时,可能会出现ORA-27237 错误。
一般处理方法及步骤
1. 确保文件是ELF格式,而不是其他格式,如例如 XCOFF(eXecutable&Object COFF,UNIX系统下的格式)。
2. 检查ELF文件是否支持动态链接,如果支持,则一般能正常注册到数据库。
3. 如使用了XCOFF格式,则需要将文件转换成ELF格式,然后再注册到数据库中。