Hi all,
I am writing a Java code for importing data to DB2. The following
lines are the code.
......
CallableStatement stmt = _dbConnection.prepareCall("CALL
SYSPROC.ADMIN_CMD(?)");
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.executeUpdate();
.....
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