分类: Oracle
2011-01-10 15:30:16
ORACLE 软件版本: 10.2.0.4
ORACLE安装目录(又是文件系统):/oracle
现在文件系统需要从老的存储迁移到新的存储上,所以对软件进行TAR包,后进行解包。
按理说,软件迁移不会导致很严重的错误,但是通过sqlplus连接到oracle,计划启动数据库的时候报告:
ORA-15180: Could not open dynamic library odm library, error
[Failed to expand the library nam]
通过查询meatalink发现,libodm10.so失去连接将会导致这个错误。
Oracle 10.2.0.3 for hpux 11.23的显示结果:
$ cd $ORACLE_HOME/lib
$ ls -l libodm*
lrwxrwx— 1 oracle oinstall 12 Apr 14 2007 libodm10.so -> libodmo
-rwxr-xr-x 1 oracle oinstall 67696 Feb 13 2007 libodmd10.so
ora-15180错误解释:
Error: ORA-15180 (ORA-15180)
Text: Could not open dynamic library %s, error [%s]
—————————————————————————
Cause: The library was not accessible
Action: Correct the permissions of the library and try again.
解决措施:建立link即可;
ln -s libodmd10.so libodm10.so
文章来自互联网,感谢作者。