Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've heard it's possible to connect to a mainframe DB2 database with a client like Oracle SQL developer. I've looked on-line and can't seem to find the connector files needed to do this in SQL developer. Can anyone direct me to a link to make this work? Or tell me if im just looking for the wrong thing to begin with. I've got the connector working with MySQL databases in Oracle, so I assumed it would be similar for a DB2 database.

share|improve this question

1 Answer

up vote 5 down vote accepted

The easiest way to connect to DB2 is through their JDBC Type 4 JCC driver. This driver uses two JARs:

  1. db2jcc.jar, which is the driver
  2. db2jcc_license_cisuz.jar, which permits the driver to connect to all DB2 server platforms, including z/OS

Your mainframe DBA should be able to provide you with both of these JARs, and assist you in building a connect string with the proper JDBC driver options.

More information about JDBC connectivity to DB2 can be found here: http://publib.boulder.ibm.com/infocenter/db2luw/v9r7/topic/com.ibm.db2.luw.apdv.java.doc/src/tpc/imjcc_c0024189.html

share|improve this answer
I wasn't able to successfully connect to the DB at this point, but I think I'm on the right track. I think the port, and IP may be different from the ZOS mainframe port and IP that I currently use to access the tables. So I'm going to dig around. – Frantumn Apr 23 '12 at 13:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.