Hibernate 3 (not 3.5) on WAS 6.1 FixPack 25 Java 4 compatibility.
I created a database table for logging individual incoming WebService Calls. (up to 24,000/day) We want to archive old rows nightly to an "archive" table.
When archiving, the Java app (hibernate) starts calling the DB2 method identity_val_local() repeatedly. This locks the table and the logs.
How can I prevent this?
I started down the Hibernate upgrade path. This impacts the Spring installation (shared JARs) I don't want to have to upgrade everything - regression testing that much would be lame.
Thanks
|