I'm using the following code in a Spring Batch app. This is taking about 600mS to complete. It is running against a DB2 table on a mainframe. This will execute about 400,000 times and will cause to app to run too long. How can I speed this up.
Code:matchingKeyTable = (KeyTable) getJdbcTemplate().queryForObject(fetch_Keytable_Sql, new Object[]{alIdL, blIdL } , new KeyTableMapper() );


Reply With Quote