Act of processing several items together.

learn more… | top users | synonyms (2)

0
votes
0answers
10 views

In R, when running mclapply, I get “execution halted” if running in batch mode but not in interactive mode.

I have a messy function that I'm calling on simulated datasets from inside mclapply() (from the parallel package). When I run the script using R CMD BATCH script.r script.out, I get many "Execution ...
0
votes
1answer
11 views

Batch rename 2k+ image files with title from .csv column entry

I have 4500+ items listed in a relational database (currently a .csv file) with 2300+ images in a folder which correspond to a part number (sometimes an image depicts multiple products). I want to ...
0
votes
3answers
23 views

batch command input menu

i have a question . It is possible to make a batch menu to accept multiple commands at the same time? Example : ( my code ) @ECHO OFF set tries=6 :top cls set /a tries=%tries% -1 if %tries%==0 ( ...
0
votes
2answers
26 views

Increase number in string in bat file?

How can I increment the value of an int in a string ? Say I have foo-815-bar. I'd like to have foo-815-bar. foo and bar can be constants (although if bar can be an unknown variable, it would be ...
0
votes
1answer
26 views

RavenDB and batch API

Hi in my project we are doing an import if lets say products. We will have a web service where we will get maybe 10 calls for one import, so we need to have a transaction that can be over several ...
0
votes
1answer
35 views

How to create Backup Batch file that copys only modified files & delete the dest files/folders that do not exist in the source?

I want to create a backup Batch file that meets these requirements: Requirement: 1-Only copy the source files if the source file got modified. 2-If the destination contains the files/folders that ...
0
votes
1answer
31 views

Catching a return code from a non-interactive R script execution

I need to launch in batch some R processes and I'd like to catch a return code from the scripting language to understand if the R process had or not a poblem in its execution. Generally speaking what ...
-3
votes
0answers
60 views

Backgroundworker vs Mainthread [closed]

I have a common method which is hit by both background worker for a batch job and main thread run by Task. Main thread is taking 8 second when background worker is not running. And the same main ...
0
votes
1answer
44 views

Parsing a string from CSV with different values each time

I'm currently working with poteto's ipgeolocation script but am changing it slightly to suit my own needs. below is what I have def get_batch(batch_filename): # "Creates list containing all the ...
2
votes
1answer
38 views

Copy Multiple Files with Same Characters to a Single File

I have a lot of files that need to be joined. Existing file naming structure is 20130514ABCD.txt where the file naming convention is year, month, date, city. I would like to merge files with same last ...
0
votes
0answers
21 views

Batch mode in SQL Server [migrated]

I want to try the column store index in SQL Server and im trying to get my queries to run in batch mode, i rewrote my query this way( it had an outer join before) but the execution plan still show ...
0
votes
1answer
49 views

Delete rows in a batch using JPA EntityManager

I was trying to delete rows in a batch using JPA EntityManager. I got the following exception. java.lang.IllegalStateException: Not allowed to create transaction on shared EntityManager - use Spring ...
0
votes
1answer
31 views

Getting Job Downtime in a Logfile if it has a duplicate

I'm trying to figure out how to determine the corresponding restart time (the last restart before job finally completed) of a specific job that abended (abnormal termination). For example: Job ABC ...
1
vote
2answers
45 views

How to return status information during lengthy batch process in MVC 4 action?

In my MVC 4 app, I have a view that uploads a file from the client machine with: <snip> @using (Html.BeginForm("Batch", "Home", FormMethod.Post, new { enctype = "multipart/form-data" })) { ...
1
vote
1answer
39 views

Cannot write result of batch file processing using DOS START command

I have a batch file which will run multiple programs using DOS start command. However, I could not write the programs' result to their respective text file. start program1.exe > result1.txt start ...
0
votes
0answers
15 views

Batch upload and process files in Django

For a Django site, I need to upload about 5 million xml files, parse them, and associate the fields I get from the xml files with fields in my models. I was wondering if there's a (relatively) easy ...
0
votes
0answers
36 views

NHibernate command_timeout does not work with batches

Today I experienced an issue with timeouts. I have the following configuration which is used to create a SessionFactory: <property name="adonet.batch_size">50</property> <property ...
0
votes
1answer
38 views

Batch import through the REST API for neo4j

I am using neo4j's rest api for batch importing. As per the docs ( http://docs.neo4j.org/chunked/stable/rest-api-batch-ops.html ) This service is transactional. If any of the operations ...
0
votes
1answer
53 views

create a temp datatable to store values of records

Need help with dataset I am working on I have a dataset with 2 tables one holds only the primary key values which is "Statementnumber" and the other hold a rest of the details with one to many ...
0
votes
1answer
14 views

Does BatchFetch change the fetch type?

I am using EclipseLink 2.1.0 in my Java EE application and optimized the loading of nested entity lists using @BatchFetch. Now I'm curious if this Annotation will change the fetch mode, meaning does ...
0
votes
0answers
10 views

how to distribute batch mode jobs to individual boards running linux mounted over NFS

Few boards running linux kernel with common root file system mounted over NFS. A file, in NFS mounted file system, holds the job description to be run in batch mode. Each line in the File holds one ...
0
votes
1answer
52 views

Mysql error 1267 in batch-file

I have a batch like this: mysql.exe -h -u -p data_base < D:\data_base.dat In this data_base.bat i have a query. This query creates a table, like this: CREATE TABLE table_name( select * from a ...
0
votes
1answer
48 views

How to log input and output of a batch file to a text file?

I have created a batch file with 2000 lines of code and which will peroform various operations in my daily work. For this batch file I have to give some inputs to enable/disable some of the ...
0
votes
1answer
26 views

Batch Insert using a loop to add to table storage in windows azure

I am trying to do a batch insert from a list of objects to table storage in windows azure. I am using the storage emulator for now. I get this error "Unexpected response code for operation". I tried ...
1
vote
2answers
113 views

Batch File > Javascript > WinSCP > Check if file exists

I have a batch file that will launch a .js file which, via WinSCP, checks if a file exists and returns to the batch file if it does or not. The problem IS: It always returns not found, and I cannot ...
0
votes
1answer
36 views

MySQL Batch Inserts - Crashing with OutOfMemory Exception

I am trying to insert two million rows into a MySQL table with Batch Insert. Following is the code I have. public void addItems(List<Item> Items) { try { conn = getConnection(); ...
0
votes
2answers
55 views

how to wait for batch command to complete its excecution in java

I want to wait till my batch command completes its execution and creates a csv file as out put.the code is as bellow for excecuting batch file String command = "cmd /c start " + batFile; ...
1
vote
1answer
48 views

Merge multiple text to text file based on filename batch

hi guys i have some problem with my batch. i want to create batch that can merge multiple text file to one text file but it must based on 2 first character of the filename. so it will be like this ...
0
votes
1answer
14 views

Feeding Batch an <enter> keystroke

In a batch file containing the following: cd .\10%%_AltApp\ call Process_UZ_Output.exe sleep 2 cd .. cd .\10%%_FalFld\ call Process_UZ_Output.exe sleep 2 cd .. ...(repeated many more time)... the ...
0
votes
1answer
38 views

Select for update skip locked with row limit

I have a program written in Java that creates 5 threads which select data from Oracle. The select is like this: select * from queue_requests where request_status = 0 and date_requested <= sysdate ...
0
votes
1answer
26 views

py2neo: minimizing write-time when creating graph

I would write a huge graph to neo4j. Using my code would take slightly less than two months. I took the data from Kaggle's events recommendation challenge, the user_friends.csv file I am using looks ...
0
votes
2answers
24 views

Advice on application design: Batch audio processing via AWS

I need to build an audio processing application. The high level workflow is: User uploads a batch of audio files The files are processed by an executable The user is able to download the processed ...
0
votes
1answer
48 views

Batch convert all files in a directory with spaces in filename

I've done this batch file that should convert all mp3 files in given folder but, I dont know why, it doesn't work... Here is the code: @echo off title Converting... set ...
1
vote
1answer
47 views

DOS Batch that sends email via outlook: need to add new lines

Here is part of my batch: start "" "C:\Program Files (x86)\Microsoft Office\Office12\OUTLOOK.EXE" /c ipm.note /m "email address&cc=email address 2;email address 3&subject=Very Important ...
0
votes
0answers
61 views

JDBCtemplate batchupdate one insert per row greenplum performance

I am writing a Spring Batch job and everything is going well. However when I try to use the jdbcTemplate.batchupdate it's creating an insert statement per row. the following is an example of my code ...
3
votes
2answers
81 views

Slow query after big INSERT in Postgres

We are using Postgres 9.2 in RedHat. We have a table similar to the following: CREATE TABLE BULK_WI ( BULK_ID INTEGER NOT NULL, USER_ID VARCHAR(20) NOT NULL, CHUNK_ID INTEGER, STATE ...
0
votes
0answers
17 views

JMX batch client?

I am looking for a JMX client that can invoke an mbean operation from a batch file. Actually a cron job should invoke an operation via JMX in Weblogic server. Unfortunately VisualVM does not work in ...
0
votes
0answers
25 views

Make sqlcmd work with batch separators

Background information: I am trying to set up a batch job for syncing stored procedures between different sql servers. I did export all stored procedures into seperate .sql files into my folder. ...
0
votes
0answers
27 views

Mysql batch update structure system

I'm trying to figure out the best way to create a system for batch updating tables in mysql db. Some data is imported from excel and some data is imported from xml and I need a way to update the ...
0
votes
0answers
67 views

Maximum execution time of ___ seconds exceeded Drupal 7 in batch

I have a problem with Drupal 7, only default language used. Migrating one non Drupal forum db to Drupal. As forum has a lot of records in db, doing everything in batches. But here comes a problem. ...
0
votes
3answers
56 views

batch_ Loop line in a file and check if a line begin with “#”

hi mate i have to a script .bat for windows shell. i have this file: line line #line line #line I want to read the file line by line, and if the line begin with "#" i don't do anything else i do ...
0
votes
0answers
76 views

find & replace text using batch file

import java.io.*; class hello { public static void main(String args[]) { System.out.println("shhhhhhhhshhhh"); } } I want that this Java program extracts "hello" text and replaces it with ...
0
votes
0answers
14 views

Troubleshooting HBase batch puts

Is it possible to troubleshoot HBase batch puts? I'm using HBase batch puts of 5000 records at a time, and I would like to, on put failure, find out which row or rows is causing a problem and to log ...
1
vote
2answers
43 views

SqlDataAdapter gives parameter name invalid error when setting batch size

I'm trying out the batch inserting/updating of SqlDataAdapter. When I set UpdateBatchSize = 1, it works, but setting it to 2 gives the exception "Specified parameter name 'Id' is not valid.". using ...
1
vote
1answer
22 views

BatchJobs code not submitting jobs (maybe)

Here is some test code: require(BatchJobs) f = function(i) {Sys.sleep(60)} reg <- makeRegistry(id="myreg") batchMap(reg, f, 1:100) submitJobs(reg, resources=list(memory=4*1024*1024, ...
-1
votes
1answer
117 views

windows batch command to move all wanted sub-folders recrusively in a directory to a NEW folder

I have a local Folder-A which have many subfolders (svn-repository), these subfolders both have a subfolder named .svn. Now I want to move all .svn folders to Folder-B, but incase of oneday I wants ...
0
votes
1answer
63 views

Replacing comma's by dots in floats using regular expressions

In a large data file I would like to replace the comma by a dot in each floating point number. 56,66 should become 55.66 and so on. The file contains many other comma's that should be left ...
0
votes
2answers
69 views

Batch File If Error

Ok so I am working on a project and I am doing this and I get to the if statement in confirmOne and it gives me "( was not expected at this time." Please help! Many of the stray "You got to here!" ...
0
votes
1answer
70 views

Input filename into jar from windows batch file

I want to input a file into my jar after it is executed from batch file. I wrote the following batch code. @echo off set path=%PATH%;C:\Program Files\Java\jre7\bin java -jar ...
-3
votes
1answer
93 views

How to kill SYSTEM process in windows via batch [closed]

How can I kill a SYSTEM's process via batch command. I know we can use TASKKILL /IM notepad.exe I need to kill notepad which is running by system in task manager it shows notepad.exe *32

1 2 3 4 5 13