Chinaunix首页 | 论坛 | 博客
  • 博客访问: 338603
  • 博文数量: 245
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: -10
  • 用 户 组: 普通用户
  • 注册时间: 2016-08-24 23:21
文章分类

全部博文(245)

文章存档

2017年(2)

2014年(6)

2013年(1)

2011年(15)

2010年(68)

2009年(153)

分类: 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

文章来自互联网,感谢作者。



阅读(1121) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~