batch-updates

howto avoid massive notification in DataBinding

Hi, I guess it's quite a common problem in databinding scenarios. What do you usually do, if you are running a batch update and want to avoid that a propertychanged-dependend calculations/actions/whatever are executed for every single update? The first thing which usually comes to my mind, is to either introduces a new boolean or unhoo...

Google App-Engine Java Batch Update

I need to upload a .csv file and save the records in bigtable. My application successfully parse 200 records in the csv files and save to table. Here is my code to save the data. for (int i=0;i<lines.length -1;i++) //lines hold total records in csv file { String line = lines[i]; //The record have 3 columns integer,integer,Tex...

Creating Batch update in Classic ASP and ADO

I have an ASP form that brings in a number of records that I want to modify and then update. Currently, the updates take place as one-at-a-time update through DLL's that simply build a SQL statement and call the database for each record. Now, I need to place a check in the SQL to make sure that I'm not getting rid of the last type of l...