SYSPROC « db2 « Java Database Q&A





1. Problems with Characterset when using DB2 SYSPROC.ADMIN_CMD for database import    stackoverflow.com

I am running a Java Application that transfers the files I need to import to the server the DB2 is on. Then the Java Application creates a JDBC Connection to the ...

2. [DB2] Calling SYSPROC.DB2LOAD    dbforums.com

Hi, I'm trying to call the load utility via JDBC. CallableStatement cstmt = con.prepareCall("CALL SYSPROC.DB2LOAD(?)"); cstmt.setString(1,"LOAD FROM ..."); return cstmt.execute(); But everytime I try I get: COM.ibm.db2.jdbc.DB2Exception: [IBM][CLI Driver][DB2/NT] SQL0444N Routine "SYSPROC.DB2LOAD" (specific name "SQL060127113434890") is implemented with code in library or path "\SYSPROC.DB2LOAD", function "SYSPROC.DB2LOAD" which cannot be accessed. Reason code: "4". SQLSTATE=42724 I looked at the routings table of ...