0

我安装了 WAS 6.1 版本,它使用的是 Java 1.5。最近我们已将数据库更新为 Oracle 12c。当我尝试连接到 12c 数据源时出现错误

"java.sql.SQLException: Oracle Error ORA-12650DSRA0010E: SQL State = 99999, Error Code = 1,265"


**

 - Steps that I have tried:

**
1- using ojdbc5.jar(already tried ojdbc14.jar and ojdbc6.jar bith of them not working

2-Set the custom properties 
   prop.put("oracle.net.encryption_client", "REQUIRED");
   prop.put("oracle.net.encryption_types_client", "( DES40 )");
   prop.put("oracle.net.crypto_checksum_client", "REQUESTED");
   prop.put("oracle.net.crypto_checksum_types_client", "( MD5 )");

3- I am using a thin client and 
**jdbc:oracle:thin:@hostname:port:servicename** 

I havetried the below thin client address also

**jdbc:oracle:thin:/hostname:port:/servicename** 

Please help me to fix this issue. My Lincence to Oracle 12c will end on 13th Feb 2017. I know it's too late but please help.

Thanks in Advance.

Date:10-Feb-2017
4

1 回答 1

0

Oracle 12c 不是 WebSphere Application Server v6.1 支持的数据库。

http://www-01.ibm.com/support/docview.wss?uid=swg27007624

请升级到更高版本的 WebSphere Application Server。

于 2017-03-09T18:34:01.763 回答