(ORA-12154)-非oracle用户权限不足
现象描述
非oracle用户登录数据库失败,系统显示如下错误信息:
QL*Plus: Release 11.1.0.7.0 - Production on Thu Jul 28 13:47:51 2011 Copyright (c) 1982, 2008, Oracle. All rights reserved. ERROR: Error while trying to retrieve text for error ORA-12154复制
处理步骤
- 以root登录Oracle数据库所在机器。
- 为“$ORACLE_HOME”下的文件设置可读可执行权限。
# chmod755 -R $ORACLE_HOME
说明:
755分别制定了ugo的权限。
- 第一位7代表u(所有者)有读取、写入、执行权限。
- 第二位5代表g(组)有读取、执行权限。
- 第三位5代表o(其它用户)有读取、执行权限。
- 退出。
# exit
- 以oracle用户登录数据库所在机器。
- 以sysdba用户连接数据库。
% sqlplus / as sysdba
登录成功,系统显示如下信息:
SQL*Plus: Release 11.1.0.7.0 - Production on Thu Jul 14 10:30:27 2011 Copyright (c) 1982, 2008, Oracle. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production With the Partitioning, Oracle Label Security, OLAP, Data Mining, Oracle Database Vault and Real Application Testing options
复制
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。