Hi all,
I am writing a Java code for importing data to DB2. The following
lines are the code.
......
CallableStateme nt stmt = _dbConnection.p repareCall("CAL L
SYSPROC.ADMIN_C MD(?)");
sql = "IMPORT FROM \"c:/data.tbl\" OF DEL MODIFIED BY COLDEL0x09
METHOD P (1, 2) " +
"INSERT INTO MyTable (ID, NAME) ";
stmt.setString( 1, sql);
stmt.executeUpd ate();
.....
The above codes will raise the following DB2 SQL Error
DB2 SQL Error: SQLCODE=-3196, SQLSTATE= , SQLERRMC=null,
DRIVER=3.50.152
I have tried to search what the error code means. I could not find the
information on SQLCODE=-3196. Do you know what it means?
Thanks
Erwin
I am writing a Java code for importing data to DB2. The following
lines are the code.
......
CallableStateme nt stmt = _dbConnection.p repareCall("CAL L
SYSPROC.ADMIN_C MD(?)");
sql = "IMPORT FROM \"c:/data.tbl\" OF DEL MODIFIED BY COLDEL0x09
METHOD P (1, 2) " +
"INSERT INTO MyTable (ID, NAME) ";
stmt.setString( 1, sql);
stmt.executeUpd ate();
.....
The above codes will raise the following DB2 SQL Error
DB2 SQL Error: SQLCODE=-3196, SQLSTATE= , SQLERRMC=null,
DRIVER=3.50.152
I have tried to search what the error code means. I could not find the
information on SQLCODE=-3196. Do you know what it means?
Thanks
Erwin
Comment