cancel
Showing results for 
Search instead for 
Did you mean: 

JDBC Receiver - how to increase Read Time

Former Member
0 Kudos

Hi Experts,

Please tell me how to increase the read time and response time in the JDBC receiver adapter.

Thanks,

Kalyani.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member204873
Contributor
0 Kudos

hi,

Check 2.3.5 section of this document:

http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/c059d583-a551-2c10-e095-eb5d95e03747

According to document:

In the advanced mode table section of sender channel and receiver channel configurations, we can set driver properties for each DB connection. Any such property would have to contain prefix 'driver:'(with out quotes).

For Oracle Database JDBC thin driver 10.2.0.3 version, the property oracle.jdbc.ReadTimeout helps to set read timeout while reading from the socket. Also for setting login time out in Oracle, we use oracle.net.CONNECT_TIMEOUT. To set these two properties use as follows: driver:oracle.jdbc.ReadTimeout 1000 driver:oracle.net.CONNECT_TIMEOUT 1000 The TimeOut Driver properties like ReadTimeout and CONNECT_TIMEOUT are in milliseconds.

Refer note 1078420 for more details

Thanks.