Tagged Questions
The batch-updates tag has no wiki summary.
3
votes
5answers
243 views
C# batch update to database using Stored Procedure
I want to run my update stored procedure to update just two columns in a table(this table is having many other columns as well).
Currently I have implemented as follows -
foreach (Object obj in ...
2
votes
2answers
408 views
Oracle Batch Insert w/No Primary Key Missing Inserts
I'm trying to insert over 100,000 records into an Oracle 9i table with no primary key using the ojdbc14.jar driver and Spring's SimpleJdbcTemplate batchUpdate method. Here's my code snippet:
private ...
2
votes
3answers
137 views
howto avoid massive notification in DataBinding
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 ...
1
vote
1answer
249 views
jdbc batch insert and query vs single inserts with gernerated key
I want to insert alot of rows into a table that generates the keys automatically. JDBC doesn't guarantee that getting the generated keys will work on a batch update.
It is implementation-defined as ...
1
vote
1answer
104 views
Using SQL to batch update columns based on position in resulting sort operation?
My brain decided to stop working this morning. I need a MySQL and SQLite compatible query that will allow me to batch update the "display_order" column of a table based on sorting by another column.
...
0
votes
1answer
105 views
How to bulk update in sql server 2008
i have a table which contains 10000 records, now i have added the field for placing the plaintext password, so now i want to update all the records, but should update the new field on the basis of the ...
0
votes
1answer
63 views
Hibernate ManyToMany Delete
I have some trouble on deleting a content when is present a many to many relation with another object.
To perform delete I have an array of named query and to delete, I loop through the array and ...
0
votes
3answers
60 views
Jdbc batched updates good key retrieval strategy
I insert alot of data into a table with a autogenerated key using the batchUpdate functionality of JDBC. Because JDBC doesn't say anything about batchUpdate and getAutogeneratedKeys I need some ...
0
votes
2answers
112 views
What does this BatchUpdateException mean?
I'm getting this BatchUpdateException from a stmt.executeBatch() statement:
BatchUpdateException: A resultset was created for update
The internet does not have any information on this exception ...
0
votes
1answer
304 views
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 ...
0
votes
1answer
488 views
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 ...