Bulk « JPA « Spring Q&A





1. Bulk inserts with Spring / Hibernate    stackoverflow.com

I'm using in my application a mix Spring/Hibernate (nothing original). For a given feature, I have to import the content of a CSV file into a table of my Oracle DB. For ...

2. hibernate createSQLQuery bulk insert    stackoverflow.com

i try to execute these 3 statements, 1 and 2 success, but when reach 3 statement, i get error, is it because i trying to insert into same table during statement ...

3. Bulk data import in a java application    stackoverflow.com

I am on java project to import huge amount of data from .csv file to a database. I am interested in understanding what can be the best approach in achieving this. ...

4. How to do bulk insert using Stored Procedure In Spring DAO?    stackoverflow.com

Stored Procedure is used to insert rows into Oracle Table. Using Spring DAO, in Data Access Layer. How to do batch insert using Stored Procedure call... Flexiable enough to change SP, ...

5. [JPA] Bulk deletion affecting cache    forum.springsource.org

According to the spec (4.10) even the 1st level cache (the persistence context) isn't affected by a bulk operation so I'm pretty sure the 2nd level cache isn't neither. I'm calling ...

6. performance Spring batch and JPA bulk inserts to DB    forum.springsource.org

Hello Do you have any benchmarks recorded on different JPA providers used with batch for writing to DB. If so please share ? Any recommendations too ? Thanks

7. Bulk Update using HibernateTemplate    forum.springsource.org

Bulk Update using HibernateTemplate Hi I want to do bulk update using hibernate template. Can any one provide some light on how bulkupdate method using Object[] works. I dont have the ...

8. Bulk Insert That doesn't fit the mold - Where to put it?    forum.springsource.org

Bulk Insert That doesn't fit the mold - Where to put it? Hello, I am planning to take advantage of a proprietary bulk insert mechanism of our rdbms in order to ...

9. Spring+Hibernate - Bulk update    forum.springsource.org

Hi All, How can we fire an update query which can potentially update many rows in Database with Hiberanate and Spring. We can delete mutiple rows by using Code: getHibernateTemplate().delete((String queryString, ...





10. Support for Hibernate 3 Bulk Updates/Deletes    forum.springsource.org

Support for Hibernate 3 Bulk Updates/Deletes Although Hibernate 3 appears to support bulk updates/deletes by passing a query string that is actually an update or delete statement, I am having problems ...

11. bulk form update    forum.springsource.org

Hi ALL! Please give me some advice how to solve following problem. Lets watch simple situation. We have some business object Code: class PersonalCard { private int id; private String name; ...

12. Sending bulk emails using Spring Email!    forum.springsource.org

Hello forum! We have application requiring to send bulk emails to large number of users-around 1,00,000! We have 2 basic needs: 1. Sending alert email to ALL users. 2. Sending customized ...

13. Bulk Inserts to MySQL Database    forum.springsource.org

Bulk Inserts to MySQL Database I'm new to Spring. I have set up a load/store program to pull records out of one MySQL database and store in another. On a call ...

14. Bulk Insert with Spring    forum.springsource.org

Bulk Insert with Spring Hello, I have an application that uses SQL Server and does the following, 1. Get data from the user in form of xml file, which is converted ...

15. Hib / Spring question / bulk deletes    forum.springsource.org

Hib / Spring question / bulk deletes hi all, sorry.... this should really be in hib forums but whenever i post there i got no reply..... i am using hibernate via ...

16. Spring Bulk Insert    forum.springsource.org

What exactly do you mean by "bulk insert"? Do you want to send many insert statements in a single batch, or execute a single statement that inserts may rows? An example ...





17. Bulk Data Processing    forum.springsource.org

Bulk Data Processing I was wondering what is the best way to handle bulk insert/update operations, i.e., HQL or SQL (using JDBCTemplate)? Scenario is application has to process millions of records ...

18. Bulk Insert and Update using iBatis in Spring 2.5.6.SEC01    forum.springsource.org

right now, successfully performed the insertion and update process by looping my List to perform insert(Entity Class) DB transaction... have a feeling that could be done by bulk insert or ...