Db2 JDBC Driver Versions
What version of the Db2 JDBC driver are applications using? Many times driver versions lag behind database upgrades and for the most part work okay. However with 9.7 and 10.1 out of support, and if you have upgraded recently, you will want to make sure your client drivers are at the appropriate level. You can get this info from application connection details as follows:
“SELECT
DISTINCT APPLICATION_NAME, CLIENT_WRKSTNNAME, CLIENT_APPLNAME, CLIENT_PRDID FROM TABLE(MON_GET_CONNECTION(cast(NULL as bigint), -2)) as temp”
and the output shows that the JDBC version 3.0 driver version is at Db2 10.5 FP10
and use this link to determine what level driver is being used.
https://www-01.ibm.com/support/docview.wss?uid=swg21363866
Leave a Comment