The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
34 views

Spring JdbcTemplate batchUpdate issue always returning -3

I am trying to use the batchUpdate on Springs jdbcTemplate but all i'm getting back is an int array of -3's. Below is the code I'm running. The array list "batch" contains inserts and updates. ...
0
votes
1answer
53 views

Batch updates: StatementType enumeration value, 4 is invalid / Invalid operation. The connection is closed

I am using Enterprise Library's Data Access Block. My code is doing large batch updates, but for one of our customers it always ends up failing with one of the following exceptions: ...
0
votes
1answer
42 views

BatchUpdate using an Oracle view

I have a complex Oracle view which takes around ~ 2 - 3 seconds to execute. I'm trying to insert values from the Oracle view into a table. I'm using JdbcTemplate BatchUpdate() to insert multiple ...
0
votes
1answer
177 views

REDIS/jedis update scores of all members in a sorted set

What's the best way to increment a medium size sorted set in REDIS? (Preferably with java driver JEDIS) Set has about 100-200K records in it. I want to increment their score by a given double number. ...
0
votes
0answers
169 views

Trying to remove and insert data using Spring's JdbcTemplate

I'm having problems trying to use batchUpdate, from Spring's JdbcTemplate. The problem is that i want to execute two SQL operations: a DELETE method (to clear my table) and then an INSERT method. It ...
0
votes
0answers
104 views

What are the reason(s) I would NOT use Batch updates in JDBC? [closed]

I am considering the implementation of batch updates in an ORM (specifically, SimpleORM). Until now, on commit of the ORM transaction, each modification is sent to the database using a ...
1
vote
1answer
175 views

MySQL Batchupdate() with ON DUPLICATE KEY UPDATE

I am using batchUpdate() to insert multiple records in a table. As per the requirement, if there is a duplicate value for a primary key while inserting it should be updated with the latest received ...
0
votes
1answer
246 views

mybatis @insert reruns batch update

I am trying to run a custom sql on a batch session object @Insert("INSERT INTO ticker(Ticker, GetUpdate) VALUES(#{symbol}, 1) ON DUPLICATE KEY UPDATE GetUpdate = 1") void ...
2
votes
1answer
158 views

mysql batchUpdate limit

Is there any maximum record limit for batchUpdate() function in SimpleJdbcTemplate. Link here. I need to insert around 100,000 record at a time.Presently I am getting timeout in the following line ...
0
votes
1answer
182 views

Hibernate Batch Update

I am trying to update a collection of a Java entity, but the order in which Hibernate executes the batch update leads to a constraint violation exception. I will use the following example to explain ...
1
vote
1answer
466 views

Best way to perform insert/delete batch spring-jdbc/mysql

First, I will try to describe what I am willing to do and then, I will ask my questions. I need to do the following: List all rows corresponding to some conditions Do some tests (e.g: check if it ...
0
votes
1answer
104 views

How to track which row update failed in batch update

I'm using a try catch blocks to do a batch update using ADO.NET2.0, the UpdateBatchSize is set 500, I can often catch exceptions, but I don't know which row update failed, is there a way to get the ...
0
votes
0answers
171 views

Stuck on postgres batch update query

So I am experimenting with Postgres batch updates in my rails apps to speed up how a background calculation is run. I am getting really close, but there is just 1 error I just can't seem to fix. Here ...
2
votes
0answers
153 views

Batch insert/update via contentProvider based on 2 fields

i'm creating a contentProvider , and i wish to be able to send it multiple DB records (contentValues) to be inserted or updated to a single table using a single batch operations . how do i do that? ...
0
votes
1answer
338 views

ORA 000001 Unique constraint violated

I have an Insert statement to a table which has a primary key of dep_id and emp_id. My java program generates a new emp_id for a new record and inserts it. What is happening is if for example, I have ...
1
vote
1answer
403 views

How can I find the values causing BatchUpdateException?

I am using Spring JDBCTemplate to perform a batchUpdate (insert) of a few thousand rows into an Oracle 10g database. To test my error handling, I made sure I get an exception about maximum length. I ...
1
vote
1answer
396 views

How to insert rows dynamically from a select query to another table in java?

I have a select query (using a prepared statement) which returns a Resultset. For example the query can be : SELECT * FROM TABLE; and I want the result of this query to insert in another table, ...
0
votes
1answer
1k views

How can I get auto increment values in batch update query (Java,MySQL)?

I am using Spring-Jdbc template(first timer) to create MySql repository. I have tables that use AutoIncrement columns as primary key. I wonder if there a way to get newly generated Ids (autoInc) ...
3
votes
1answer
402 views

Slow batch update on Oracle

I have a quite confusing and strange problem with using JDBC on an old Oracle server (which is an 8i as I was told). I prepared a table there with about 10 columns, numbers, varchars, a raw(255) and ...
1
vote
1answer
134 views

Editing a datagridview on a windows forms from behind a WCF layer using Entity Framework 4.0

I am using self-tracking entities from across a WCF Layer to bind a datagridview on a Windows forms application. All working fine. My problem is that when I am editing a cell, the moment I move out ...
0
votes
1answer
2k views

Spring JdbcTemplate batchUpdate handling exceptions

Currently our code uses batchUpdate method of JdbcTemplate to do batch Insertion. My question is in case of any exception in one of the update how to handle it (suppose just by adding the log) and ...
3
votes
5answers
2k 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 ...
0
votes
1answer
793 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
283 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 ...
1
vote
3answers
574 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 ...
2
votes
1answer
867 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
2answers
197 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. ...
2
votes
2answers
885 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 ...
0
votes
2answers
815 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
479 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
2answers
726 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 ...
2
votes
3answers
246 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 ...