Reputation: 1650
Hy guys,
I'm trying to setup a DB2 (V11.1) stress test using Jmeter (3.1).
When I run the test plan I got the error:
1489682525237,5,DB2 JDBC select,42601 -104,"com.ibm.db2.jcc.am.SqlSyntaxErrorException: DB2 SQL Error: SQLCODE=-104, SQLSTATE=42601, SQLERRMC=;;from TEST.TESTTABLE;END-OF-STATEMENT, DRIVER=4.16.53",DB2 Thread Group 1-1,text,false,,108,0,1,1,0,0,0
I've tested the same connection parameters and query using another Software (RazorSQL) and they are fine.
What it could be?
Upvotes: 1
Views: 773
Reputation: 623
You received the illegal symbol error.
Using semicolon after a single statement may produce this error.
Try to remove the semicolon ;
Upvotes: 3