sqlplus本地登入報錯ORA-12545

yangtingkun發表於2011-11-17

在客戶伺服器上嘗試登入資料庫是碰到錯誤。

 

 

步驟如下:

> sqlplus /nolog

SQL*Plus: Release 10.2.0.1.0 - Production on Thu Nov 17 17:24:16 2011

Copyright (c) 1982, 2005, Oracle. All rights reserved.

SQL> conn / as sysdba
ERROR:
ORA-12545: Connect failed because target host or object does not exist

SQL> conn user/password
ERROR:
ORA-12545: Connect failed because target host or object does not exist

SQL> conn user/password@100.300.100.200/db
Connected.

嘗試連線本地的資料庫,結果出現了ORA-12545錯誤,嘗試透過網路方式連線,反而沒有碰到問題。這說明資料庫本身是正常的,而本地無法連線,顯示是本地設定出現了問題。

檢查了環境變數的設定,包括ORACLE_SIDORACLE_HOMEPATH,都未發現任何異常,再次嘗試連線資料庫:

> sqlplus user/password@100.300.100.200/db

SQL*Plus: Release 10.2.0.1.0 - Production on Thu Nov 17 17:26:54 2011

Copyright (c) 1982, 2005, Oracle. All rights reserved.


Connected to:
Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production

SQL> exit
Disconnected from Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production

這次同樣連線到資料庫,但是由於連線方式和第一次的不同,透過Oracle提示的資訊找到了錯誤的原因。

首先嚐試的簡易連線方式是10g的新特性,而且從sqlplus的工具版本資訊也可以看得出,sqlplus10.2.0.1版本的。而連線到資料庫後顯示的資料庫伺服器版本資訊卻是9.2.0.4

顯然當前是透過一個10.2sqlplus客戶端,連線到9.2的資料庫。那麼無論ORACLE_HOME還是PATH都是指向10.2的客戶端的,這就是為什麼出現ORA-12545錯誤的原因:

[DEV]dev:/app/oracle/product
> export ORACLE_HOME=/app/oracle/product/920
[DEV]dev:/app/oracle/product
> export PATH=$ORACLE_HOME/bin:$PATH
[DEV]dev:/app/oracle/product
> sqlplus '/ as sysdba'

SQL*Plus: Release 9.2.0.4.0 - Production on Thu Nov 17 17:28:41 2011

Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.


Connected to:
Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production

SQL>

定位問題的原因,解決就很簡單了,設定ORACLE_HOMEPATH9.2對應的目錄後,在本地sqlplus成功連線資料庫。

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4227/viewspace-711550/,如需轉載,請註明出處,否則將追究法律責任。

相關文章