I have a batch program that connects to an IBM DB2 database using IBM DB2 JDBC Universal Driver Architecture version 3.53.81.
It stores records one at a time and does a commit every 200 records. After it commits 4600 records (the total the program is supposed to store is around 5300-5500), it crashes.
Is there a limit to the number of commits? The weird thing is when I run the same program in our Dev/Test environments, it gets past 4600 without a problem.
Here's the error message:
Can anyone help?
It stores records one at a time and does a commit every 200 records. After it commits 4600 records (the total the program is supposed to store is around 5300-5500), it crashes.
Is there a limit to the number of commits? The weird thing is when I run the same program in our Dev/Test environments, it gets past 4600 without a problem.
Here's the error message:
Code:
DB2 SQL Error: SQLCODE=-805, SQLSTATE=51002, SQLERRMC=DB2P.NULLID.SYSLH20C.5359534C564C3031;DISTSERV;04, DRIVER=3.53.81
Can anyone help?