I am trying to access on prem DB2 data from DSX using a Python notebook in Jupyter. I have uploaded db2jcc.jar & license jar files to my home directory but how do I add the directory to the classpath ? Is there another to
相关问题
- Difference between Types.INTEGER and Types.NULL in
- Do you need to close the connection you get from j
- What is the best way to handle BOOLEAN values in D
- SQL1032N No start database manager command was iss
- metaData.getPrimaryKeys() returns a single row whe
相关文章
- Java的JDBC可以返回HashMap吗?
- Get the connected mysql database name (JDBC)
- Escape percentage sign DB2 SQL
- DB2 SQL error: SQLCODE: -206, SQLSTATE: 42703 [clo
- Extra rows being received when matching pairs in S
- GWT JDBC LDAP connection fails
- MySQL driver problem in my dynamic web project (JP
- Java ETL process
You can alternatively use connector available on DSX to connect to DB2 on prem.
Ref:- https://datascience.ibm.com/docs/content/analyze-data/python_load.html#ibm-db2
I believe you must be using gateway or some way to connect to your on-prem db2. https://datascience.ibm.com/blog/working-with-on-premises-databases-step-by-step/
Thanks, Charles.