1

重複の可能性:
Java Oracle localhost接続エラー(ORA-12505)

Oracle 10g Express Editionに接続しようとすると、エラーが発生します。

java.sql.SQLException: Listener refused the connection with the following error:
ORA-12505, TNS:listener does not currently know of SID given in connect descriptor
The Connection descriptor used by the client was:
localhost:1521:xe

私のサンプルコード:

    Class.forName("oracle.jdbc.OracleDriver");
    Connection connection = null;
    connection = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe", "mk119", "mk119");
    Statement stmt = connection.createStatement();

データベース内:

SQL> connect mk119
Enter password:
Connected.
SQL> ed
Wrote file afiedt.buf

  1* select sys_context('userenv', 'instance_name') from dual
SQL> /

SYS_CONTEXT('USERENV','INSTANCE_NAME')
----------------------------------------------------------------------

xe

SQL>

これについて私を助けてください。

編集:スタックトレース:

java.sql.SQLException: Listener refused the connection with the following error:
ORA-12505, TNS:listener does not currently know of SID given in connect descriptor
The Connection descriptor used by the client was:
localhost:1521:xe

        at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
        at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:261)
        at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:387)
        at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:414)
        at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:165)
        at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
        at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801)
        at java.sql.DriverManager.getConnection(DriverManager.java:579)
        at java.sql.DriverManager.getConnection(DriverManager.java:221)
        at fingerprint.DatabaseTest.main(DatabaseTest.java:14)

編集:完全なコード:

import java.sql.*;

public class DatabaseTest {
    public static void main(String [] args){
        try{
            Class.forName("oracle.jdbc.OracleDriver");
            Connection connection = null;
            connection = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe", "mk119", "mk119");
            Statement stmt = connection.createStatement();
            System.out.println("Connection created");
            stmt.close();
            connection.close();
        }catch(Exception e){
            e.printStackTrace();
        }
    }
}
4

1 に答える 1

3

ここに記載されている回答に従って、以下を確認してください(回答は、関連する、おそらく重複している質問からの回答です)。

"\ admin\NETWORKディレクトリの下のlistener.oraファイルに次の値があるかどうかを確認してください。

XE =
  (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (CONNECT_DATA =
      (SERVER = DEDICATED)
      (SERVICE_NAME = XE)
    )
  )

「」

したがって、接続URL(host、port、sid)をチェックして、正しく設定されていることを確認してください。

于 2012-12-28T19:33:16.453 に答える