Top "Batch-processing" questions

Batch-processing refers to programmatic execution with minimum human interaction.

Doctrine Batch Processing Iterate High Memory Usage

I've been looking into using iterators for batch processing in Doctrine (http://docs.doctrine-project.org/en/2.0.x/reference/batch-processing.html). …

doctrine batch-processing
Saving 1000+ records to the database at a time

I'm using NHibernate currently. I have a situation where I need to save a bunch of records to the database …

nhibernate ado.net batch-processing
(Windows Batch File) IF statement inside FOR LOOP

I'm trying to write manual document validation part of my program. It's basically opening all the pdf documents one by …

batch-file if-statement for-loop batch-processing multiple-choice
If Notepad.exe is running then taskkill if not running go to next statement

I need help writing batch code. In the initial state of my batch script I need to check if notepad.…

batch-file batch-processing taskkill
Using a BAT file to automatically reconnect a VPN Cisco on failure of connection

I would like help to create an automatic BAT script that reconnects my Cisco VPN Client Session in case of …

batch-file batch-processing cisco
Spring Batch how to filter duplicated items before send it to ItemWriter

I read a flat file (for example a .csv file with 1 line per User, Ex: UserId;Data1;Date2). But how …

spring batch-processing spring-batch
How to rename n files with ANT? (Batch Job)

How can I rename 1..n file with ANT? I would like to rename any files with xxxx.default.properties to …

java ant batch-processing
How to execute a for loop in batches?

for x in records: data = {} for y in sObjectName.describe()['fields'] data[y['name']] = x[y['name']] ls.append(adapter.…

python python-2.7 batch-processing
How to batch convert .sph files to .wav with sox

I have a directory with many folders containing hundreds of .SPH files. I need to convert all .SPH files into .…

batch-file batch-processing sox
Spring Batch: Which ItemReader implementation to use for high volume & low latency

Use case: Read 10 million rows [10 columns] from database and write to a file (csv format). Which ItemReader implementation among JdbcCursorItemReader &…

spring jdbc batch-processing spring-batch