table « Batch « Spring Q&A





1. Spring Batch - Staging table design - transfer data to main table    stackoverflow.com

I am developing a data loader application which uses flat file to read data and insert in to temporary staging table.This is done using MultiResourcePartitioner(thread pool 10-11,queue 151) , where each ...

2. Spring Batch Admin Table Prefix Issue    forum.springsource.org

Spring Batch Admin Table Prefix Issue All: Downloaded, installed, and built the spring-batch-admin-1.2.0.RELEASE and then copied the resulting WAR file to the Tomcat 5.5.31 webapps directory. Started Tomcat without any issues ...

3. Batch Metadata Tables Clean up    forum.springsource.org

I want to delete records from all Batch_XXX tables based on last_updated date in batch_job_execution table. How to Delete data from Spring Batch Metadata tables that are 90 days old. I ...

4. purge/move historical data from spring batch tables    forum.springsource.org

Hi all, We are considering how to storicize the 6 SB tables: the row number in that tables can't increase too much it has no interest for us the data 6-months-old ...

5. How to do the batch insert from one table into other?    forum.springsource.org

How to do the batch insert from one table into other? One way is to: 1. retrieve all records from I/P table in a List object 2. Create sql string 3. ...

6. Can we change BATCH_* table names?    forum.springsource.org

Hello All, I am trying to find out whether the tables that are created for SPRING BATCH are configurable? In other words, can we rename these tables? BATCH_JOB_EXECTION, BATCH_JOB_INSTANCE, BATCH_STAING, BATCH_STEP_EXECUTION ...

7. Is spring batch meta data table's name configurable?    forum.springsource.org

You can modify the prefix of the tables via a setter, which would allow you to replace the BATCH_ in front of the tables, but that's the most you can do. ...

8. Recommendations for pruning BATCH_ tables?    forum.springsource.org

Recommendations for pruning BATCH_ tables? We have a set of statistic aggregating and purging jobs written using Spring Batch 1.1 (working great too). One question we have is are there recommended ...

9. Clearing of BATCH_* tables    forum.springsource.org

Clearing of BATCH_* tables Hi I had earlier posted a query regarding clearing the data created in these tables(BATCH_JOB_INSTANCE, BATCH_JOB_EXECUTION, BATCH_JOB_PARAMS, BATCH_STEP_EXECUTION, BATCH_STEP_EXECUTION_CONTEXT) after the job execution has complete. You had ...





10. Spring Batch without the job tables    forum.springsource.org

Hi, we'd like to use spring batch as a framework for batch processes, however we already have an external system to manage batch job execution, as such we do not need ...

11. Appropriate Solution to insert in one table and delete from another + Spring batch    forum.springsource.org

Appropriate Solution to insert in one table and delete from another + Spring batch Hi, I have a requirement where i have to read from a file and insert them to ...