The batch-insert tag has no wiki summary.
0
votes
1answer
31 views
Neo4j Batch Inserter Unknown Error
I am attempting to use the java batch-inserter for a neo4j database, and I get the following error message:
>java -server -Xmx4G -jar target/batch-import-jar-with-dependencies.jar target/db ...
0
votes
1answer
35 views
Maven Plugin Error: Tests Failed
I'm trying to install a plugin using Maven (batch importer for neo4j). Using
mvn clean compile assembly:single
Gave me an error that the directory could not be created. I changed it to:
sudo mvn ...
4
votes
1answer
262 views
How to get generated keys from JDBC batch insert in Oracle?
I am inserting many records using JDBC batch inserts.
Is there any way to get the generated key for each record?
Can I use ps.getGeneratedKeys() with batch inserts?
I am using ...
0
votes
1answer
34 views
Oracle fom Nhibernate batch insert not work
<property name="adonet.batch_size">100</property>
here is some code:
using (var session = SessionFactory.NHSessionFactory.OpenStatelessSession())
{
using (var tx = ...
0
votes
1answer
444 views
How to control the batch-size when using MyBatis ExecutorType.Batch for batch insert operations
I am trying to use mybatis batch execution (ExecutorType.BATCH) support. I want to batch insert few records in database performance and scalability reason. I want to override the default Mybatis batch ...
2
votes
2answers
303 views
How can I do a batch insert into an Oracle database using Python?
I have some monthly weather data that I want to insert into an Oracle database table but I want to insert the corresponding records in a batch in order to be more efficient. Can anyone advise as to ...
0
votes
1answer
280 views
MySql, LOAD DATA or BATCH INSERT or any other better way for bulk inserts
I am trying to create a web application, primary objective is to insert request data into database.
Here is my problem, One request itself contains 10,000 to 1,00,000 data sets of information
(Each ...
3
votes
1answer
178 views
How to commit batches of inserts in hibernate?
I have to save a large number of objects to the database using hibernate.
Instead of commiting all of them at once, I would like to commit as soon as n (BATCH_SIZE) objects are present in the session.
...
1
vote
1answer
107 views
JDBC Batch executing extremely slow
Can anyone tell me what I'm doing wrong I'm executing 350 inserts in a mysql and it's taking like 40 secs.
Here is the code
long t0 = System.currentTimeMillis();
Connection con = ...
0
votes
0answers
108 views
Tracing slow batch insert queries in mysql
I have a program that at some point performs thousands of inserts into a MySQL table. Those inserts are surrounded by a transaction. When I run the code on a dev machine using production data (copied ...
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?
...
1
vote
1answer
249 views
How do I avoid MySql deadlocks?
I'm talking to a MySql database using the jOOQ database abstraction layer.
I keep getting the following error:
SQL [null]; Deadlock found when trying to get lock; try restarting transaction
This ...
0
votes
2answers
165 views
Batch Commit for Lucene Index
I want to index the documents in batches. I am setting the IndexWriterConfig.setMaxBufferedDocs() to set the total number of documents in memory before they are committed back in the index.
Do I have ...
0
votes
2answers
177 views
mysql batch insert : get the number of inserted lines
I'm using java to do batch inserts into a mysql table:
cnx = lconnect.openConnection();
mStatement = cnx.createStatement();
boolean firstTime = true;
PreparedStatement preparedStatement = null;
...
3
votes
3answers
301 views
java jdbc design pattern : handle many inserts
I would like to ask for some advices concerning my problem.
I have a batch that does some computation (multi threading environement) and do some inserts in a table.
I would like to do something like ...
1
vote
3answers
1k views
Execute multiple stored procedures in one transaction from WCF
This is my first post on here..
I'm writing a program in MVC3 that has a WCF service which acts as the Data Access Layer. In my DAL, I have to do some sort of 'batch' inserts and updates.. ...
2
votes
3answers
6k views
Batch Inserting from Excel into SQL Server
Is there a way to do a batch update on SQL Server from a row of data in Excel? We have excel documents that contain 2000+ plus rows and need to be imported in SQL Server. Is there a way to do a batch ...
0
votes
1answer
820 views
mysql batch insert
I am doing batch insert for inserting 80k records and 1200 records per batch.
The query is executing fine. The problem is that I am getting data from mssql server and creating a batch array out of ...
0
votes
2answers
298 views
Insert values or ignore row if a constraint fails
In SQL Server 2008, is there a way to insert rows while omitting those rows that cause a foreign key constraint to fail?
E.g. I have an insert statement similar to this:
insert into tblFoo(id, name, ...
0
votes
1answer
542 views
How to batch insert lots of rows using Enterprise Library DAAB?
How can I execute 1000s of INSERT queries using Enterprise Library DAAB? That is to say how can I insert lots of rows into a table using DAAB all at once efficiently? And without using a for-loop. ...
0
votes
2answers
640 views
Send custom complex objects to Silverlight RIA services
I've created a complex object which itself include a list of another object.
Example:
public class MyClass1
{
private List<MyClass2> myClass2List
[Key]
public long Id { get; set; ...
0
votes
4answers
4k views
T-SQL, Insert into with MAX()+1 in subquery doesn't increment, alternatives?
I have a query where I need to "batch" insert rows into a table with a primary key without identity.
--TableA
--PK int (Primary key, no-identity)
--CustNo int
INSERT INTO TableA (PK,CustNo)
SELECT ...
1
vote
1answer
473 views
Numeric index during batch insertion in Neo4j
I'm using batch insertion of nodes and relationships into Neo4j graph database. Everything works, including the index on multiple properties ([String] name, [int] id). However, when I try to query the ...
1
vote
2answers
242 views
Reduce sql server overhead with group insertion
I have a crawler that fetch documents across web pages. when i receive a page, i immediately insert the content in sql server, (20 insertion per second). this slow down my application and server ...
12
votes
2answers
23k views
Java: Insert multiple rows into MySQL with PreparedStatement
I want to insert multiple rows into a MySQL table at once using Java. The number of rows is dynamic. In the past I was doing...
for (String element : array) {
myStatement.setString(1, ...
2
votes
2answers
1k views
BLToolKit: how to insert a list of objects?
Is it possible with BLToolKit (http://bltoolkit.net) to create a set of records for list of object (batch insert)?
If yes, how is this possible?
Thanks a lot!
1
vote
1answer
1k views
Ignore Postgresql batch insert errors
Assume this simple SQL query:
INSERT INTO table (col1,col2) VALUES (val1,val2),(val3,val4),(val5,val6);
Lets say val3 is invalid value for col1. This would cause psql to abort whole INSERT command ...
2
votes
2answers
3k views
How to insert records using select in codeigniter active record
I want to implement a sql query using CodeIgniter Active Record class. The query looks like this..
INSERT california_authors (au_id, au_lname, au_fname)
SELECT au_id, au_lname, au_fname
FROM authors
...
3
votes
2answers
578 views
Batch Inserts And Prepared Query Error
Ok, so I need to populate a MS Access database table with results from a MySQL query. That's not hard at all. I've got the program written to where it copies a template .mdb file to a temp name and ...
17
votes
3answers
16k views
Batch inserts with JPA/EJB3
Does JPA/EJB3 framework provide standard way to do batch insert operation...?
We use hibernate for persistence framework, So I can fall back to Hibernate Session and use combination ...
