Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (2)

11
votes
5answers
2k views

Run all SQL files in a directory

I have a number of .sql files which I have to run in order to apply changes made by other developers on an SQL Server 2005 database. The files are named according to the following pattern: 0001 - ...
10
votes
5answers
476 views

Eclipse C++: Format Source Files in Batch

Is it possible for me to use Eclipse to mass-reformat a bunch of C++ files (on the order of a few thousands), without actually having to open every single one in the IDE? Update: A couple people ...
7
votes
3answers
2k views

How to test if executable exists in PATH inside Windows batch files?

I'm looking for a simple way to test if an executable exists in the PATH environment variable from a Windows batch files. Usage of external tools not provided by the OS is not allowed and the ...
6
votes
4answers
4k views

windows batch programming: how to get the error level of commands in a pipe

Batch files return the error code of the last command by default. Is it somehow possible to return the error code of a former command. Most notably is it possible to return the error code of a ...
5
votes
5answers
66 views

Pickup directories: How not to pickup files that are still being written?

I have a Python script that checks on a pickup directory and processes any files that it finds, and then deletes them. How can I make sure not to pickup a file that is still being written by the ...
5
votes
1answer
205 views

Graph Batch API

this is my first post at stackoverflow. I am using the Facebook Graph Batch API to request the Feed-Updates from several users at once. But I really don't know how the appropriate error handling is ...
5
votes
3answers
897 views

Batching DB commands in Entity Framework 4.0

My current project requires everyday synchronization with external system. The synchronization is based on complex import file structure which is parsed and processed with extensive business logic. ...
5
votes
5answers
1k views

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 like this: var relatedTopics = GetRelatedTopics(topic); foreach (var relatedTopic in ...
4
votes
1answer
161 views

Symfony2 - doctrine2 batch processing

I have the following situation: I need to create a large number of entities (Entity C) based on a pair of entities Entity A (45) Entity B (700000+) Entity C (45 x 700000) Entity D So I decided to ...
4
votes
3answers
561 views

Python library for job scheduling, ssh

I'd like to find a user-space tool (preferably in Python - barring that, in anything I could easily modify if it doesn't already do what I need it to) to replace a short script I've been using that ...
4
votes
3answers
502 views

Best way to insert a good amount of records in hibernate

I'm using hibernate + play! framework at work, is there a "best practice" on inserting a good amount of records using hibernate? They are around 6,000 to 10,000 per text file so I don't know if ...
4
votes
3answers
109 views

Tool to compare/diff HTML in bulk

I have a lot of HTML files (10,000's and GBs worth) scraped from a server and I want to check to make sure the server produces the same results after some modifications but ignore kinds of differences ...
3
votes
2answers
65 views

How to iterate over db records correctly with hibernate

I want to iterate over records in the database and update them. However since that updating is both taking some time and prone to errors, I need to a) don't keep the db waiting (as e.g. with a ...
3
votes
2answers
124 views

Batch Command Conflict

I have made this batch script which will allow the user to enter a website's URL as well as a time in minutes, it then adds the URL to the hosts file and removes it once the time expires. (Effectively ...
3
votes
3answers
104 views

Why would you send email in a batch instead of sending individually?

We have a Windows Service to check if certain conditions are met, we will send an email to the customer. We will have about 50 emails to send everyday. My question is, is it better to send emails out ...
3
votes
2answers
484 views

What is the definition of realtime, near realtime and batch? Give examples of each?

I'm trying to get a good definition of realtime, near realtime and batch? I am not talking about sync and async although to me, they are different dimensions. Here is what I'm thinking Realtime ...
3
votes
2answers
1k views

Java JDBC clearBatch() and heap memory

I've noticed the following behavior. I have a file that is about 3MB containing several thousand rows. In the rows I split and create prepared statement (about 250 000 statements). What I do is: ...
3
votes
3answers
2k views

How to delete multiple db entities with Nhibernate?

What is the best practice for this problem? Is there any batching features built-in? Sample code: using (ITransaction transaction = _session.BeginTransaction()) { _session.Delete("FROM myObject ...
3
votes
5answers
2k views

Batch commit on large INSERT operation in native SQL?

I have a couple large tables (188m and 144m rows) I need to populate from views, but each view contains a few hundred million rows (pulling together pseudo-dimensionally modelled data into a flat ...
3
votes
5answers
558 views

Subversion Tagging and Security

I have set up an SVN repository from scratch, and I have successfully tagged some of my releases using the SVN copy command. I used the SSPI auth plugin for apache, so our developers just hit the ...
3
votes
1answer
114 views

What is the right solution for a high-availability authorization service?

I work for a software shop, which has an in house predictive dialer product, and we need to implement a solution to obey to the DO-NOT-CALL lists. Basically, I have a database with the ...
3
votes
3answers
2k views

Java batch monitoring

We have 50+ Java batch processes that run at different times of the day. They run on a Solaris box, and are started via cron. Currently, the only way we only know if they succeed or fail is by an ...
3
votes
11answers
2k views

Is it stupid to write a large batch processing program entirely in PL/SQL?

I'm starting work on a program which is perhaps most naturally described as a batch of calculations on database tables, and will be executed once a month. All input is in Oracle database tables, and ...
2
votes
2answers
43 views

bash: process list of files in chunks

The setting: I have some hundred files, named something like input0.dat, input1.dat, ..., input150.dat, which I need to process using some command cmd (which basically merges the contents of all ...
2
votes
1answer
47 views

Is it possible to use HTML5 canvas API to batch generate images non-interactively via script?

Currently, when I need to create some images for scientific visualization (generally, from CSV files or other data-container), I use Python as scripting language, and Cairo as drawing API. It allows ...
2
votes
1answer
56 views

Add leading zeroes to a filename

I am trying to modify a batch file created by somebody else, to add leading zeros depending on the number found on line 4 of the file. The actual filename is a concatenation of the name found on line ...
2
votes
2answers
65 views

Tricky MySQL batch query

I have a database of events which gets updated every night. A single event has information across three (or more) tables. Recently the volume of updates has caused my MySQL engine to be very slow to ...
2
votes
2answers
46 views

Best approach for a batch email process that accesses a web app's database

I have a C# web app that needs a batched nightly email process generated out of it - I'm trying to figure out the best approach for this. In an application I managed in the past we had a separate ...
2
votes
1answer
37 views

Batch modify HTML (in PHP files) using jQuery-like commands and Linux scripts

I have a collection of old PHP files that need to have their HTML modified to fit to a new design. Tasks include selecting particular elements, removing / adding classes, appending content and ...
2
votes
3answers
157 views

given a list of objects using C# push them to ravendb without knowing which ones already exist

Given 1000 documents with a complex data structure. for e.g. a Car class that has three properties, Make and Model and one Id property. What is the most efficient way in C# to push these documents to ...
2
votes
2answers
140 views

Threads processing a batch job in servlet enviornment

I have a Spring-MVC, Hibernate, (Postgres 9 db) Web app. An admin user can send in a request to process nearly 200,000 records (each record collected from various tables via joins). Such operation is ...
2
votes
1answer
173 views

Batch file. Delete all files and folders in a directory

I want to have a batch file that will delete all the folders and files in my Cache folder for my wireless toolkit. Currently I have the following: cd "C:\Users\tbrollo\j2mewtk\2.5.2\appdb\RMS" del ...
2
votes
2answers
490 views

Whats the batch request limit for Facebooks Graph API?

Does anyone know whats the limit for batch requests when using FBs graph API? From their documentation: Limit We currently limit the number of batch requests to 20. Source That's not ...
2
votes
1answer
61 views

Batch Processing Large Number of Files - Store in Memory or Write to Disk First?

I'm writing a software that can help me calibrate and stack images - this technique is often used in Astronomy/Astrophotography to reduce noise and get rid of optical issues, like vignetting. I'll ...
2
votes
1answer
49 views

NHibernate disables insert batching at the ADO level transparently if I use an identiy identifier generator. Why?

Related to this document : NHibernate disables insert batching at the ADO level transparently if I use an identiy identifier generator. Why? If I use identity for generating identifier, How can I ...
2
votes
2answers
118 views

How to execute windows batch command from sql?

HI I have written a windows batch command that operates on video files which are stored on a oracle database. What is best way to execute this batch command on those video files ? One way I can think ...
2
votes
5answers
753 views

Batch OCR Program for PDFs

This has been asked before, but I don't really know if the answers help me. Here is my problem: I got a bunch of (10,000 or so) pdf files. Some were text files that were saved using adobe's print ...
2
votes
1answer
925 views

Spring hibernate jdbc batch size

I have a few scenarios which I think is a little unclear from the hibernate documenation. Data class: class HibernateDao { // ... @Transactional public void ...
2
votes
4answers
1k views

Running a background Java program in Tomcat

Can anyone advise here? I have a situation where users will submit data mining requests interactively via a Java JSP and servlet to an application of mine which will dynamically work out association ...
2
votes
4answers
303 views

Guaranteed processing of data in WCF service

I have a WCF service that processes a feed of tens of thousands of records from SAP. The service call takes an XElement as its main parameter and processes the XML to update records in our database. ...
2
votes
2answers
254 views

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 xxxx.local.properties. Thank you.
2
votes
2answers
268 views

FaceBook search: What are its technical requirements and innovative features deserving attention?

Facebook has cooked into their search some features that are unique -- possibly some are patented, even? The features I speak of are driven by three distinct requirements: The fact that their ...
2
votes
2answers
749 views

any sample for batch processing in hibernate?

Can i find the example of batch processing in java hibernate so that i can run delete queries on two tables.
2
votes
2answers
587 views

Run a batch file continuously after 20 minutes (windows xp OS)?

I want to run a batch file which contain command arp -d * ( used to flush the MAC entry table) I want to execute this batch file continuously after 20-20 minutes .. regulary ? How can i do this with ...
2
votes
1answer
741 views

batch file + convert LF to CR+LF

HI, We have a shell script file named LineFeed.sh which does a function of converting a Linefeed(LF) to Carriage Return + LineFeed. We want the same to be done by a batch file in windows . Is it ...
2
votes
4answers
4k views

Is it possible to unzip .ZIP file using .BAT command on Windows XP?

Is it possible to unzip .ZIP file using .BAT command on Windows XP? we have file.zip how to create a .BAT commands file to unzip\unpack it to some folder. USING ONLY NATIVE WINDOWS XP programms and ...
2
votes
3answers
1k views

Batch insert using groovy Sql?

How can you do a batch insert using groovy Sql while simulating prepared statements? All the examples I've found are similar to the following and don't use prepared statements. withBatch { stmt ...
2
votes
5answers
3k views

OutOfMemory when reading big amounts of data using hibernate

I need to export big amount of data from database. Here is classes that represents my data: public class Product{ ... @OneToMany @JoinColumn(name = "product_id") @Cascade({SAVE_UPDATE, ...
2
votes
1answer
843 views

Batch Processing Image Files in MATLAB

I'm a beginner in MATLAB and image processing. I encountered a problem while trying to use the batch processing and hope someone would be able to enlighten me. Thanks. Following the example from ...
2
votes
3answers
396 views

Determining system requirements (hardware, processor & memory) for a batch based software application

I am tasked with building an application wherein the business users will be defining a number of rules for data manipulation & processing (e.g. taking one numerical value and splitting it equally ...

1 2 3 4 5