Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
5answers
10k views

Whats the fastest way to do a bulk insert into Postgres?

I need to programattically insert 10's of millions of records into a postgres database. Presently I am executing 1000's of insert statements in a single "query". Is there a better way to do this, ...
14
votes
3answers
5k views

Performance of bcp/BULK INSERT vs. Table-Valued Parameters

I'm about to have to rewrite some rather old code using SQL Server's BULK INSERT command because the schema has changed, and it occurred to me that maybe I should think about switching to a stored ...
13
votes
14answers
11k views

SQL Bulk import from CSV

I need to import a large CSV file into an SQL server. I'm using this : BULK INSERT CSVTest FROM 'c:\csvfile.txt' WITH ( FIELDTERMINATOR = ',', ...
12
votes
7answers
21k views

SQL Server Bulk insert of CSV file with inconsistent quotes

Is it possible to BULK INSERT (SQL Server) a CSV file in which the fields are only OCCASSIONALLY surrounded by quotes? Specifically, quotes only surround those fields that contain a ",". In other ...
11
votes
8answers
2k views

SQL Server insert performance

I have an insert query that gets generated like this INSERT INTO InvoiceDetail ...
9
votes
2answers
651 views

Bulk loading MongoDB from JSON file with a number of objects

I want to do a bulk load into MongoDB. I have about 200GB of files containing JSON objects which I want to load, the problem is I cannot use the mongoimport tool as the objects contain objects (i.e. ...
9
votes
5answers
39k views

insert multiple rows via a php array into mysql

I'm passing a large dataset into a mysql table via php using insert commands and I'm wondering if its possible to insert approximately 1000 rows at a time via a query other than appending each value ...
9
votes
7answers
25k views

TSQL: UPDATE with INSERT INTO SELECT FROM

so I have an old database that I'm migrating to a new one. The new one has a slightly different but mostly-compatible schema. Additionally, I want to renumber all tables from zero. Currently I ...
7
votes
1answer
653 views

Writing large number of records (bulk insert) to Access in .NET/C#

What is the best way to perform bulk inserts into an MS Access database from .NET? Using ADO.NET, it is taking way over an hour to write out a large dataset. Note that my original post, before I ...
7
votes
4answers
2k views

Accelerate bulk insert using Django's ORM?

I'm planning to upload a billion records taken from ~750 files (each ~250MB) to a db using django's ORM. Currently each file takes ~20min to process, and I was wondering if there's any way to ...
7
votes
1answer
187 views

Efficient way to alter 100GB table

We have a number of databases which store 10s to 100s of gigabytes of data in one of the tables. It contains image data. The problem is that a lot of these databases were created improperly. ...
7
votes
4answers
313 views

Faster SQL Inserts?

I'm dealing with chunks of data that are 50k rows each. I'm inserting them into an SQL database using LINQ: for(int i=0;i<50000;i++) { DB.TableName.InsertOnSubmit ( new TableName ...
7
votes
6answers
316 views

What is the quickest way to import 60m records into SQL

I have a 5-6 tables in my database that I need to populate with test data to test peroformance in my app. I can write a code and do a bulk insert my prediction is that it will take nearly 3 days to ...
7
votes
5answers
1k views

SQL Bulk Stored Procedure call C#

How do I call stored procedures in bulk? I would like to do something like a bulk copy. All that the stored procedure does is 8 selects for unique constraint and 8 inserts. With no returning value.
7
votes
8answers
1k views

What is the fastest way to insert 100 000 records from one database to another?

I have a mobile application. My client has a large data set ~100.000 records. It's updated frequently. When we sync we need to copy from one database to another. I have attached the second database ...
7
votes
2answers
3k views

Is SQL Server Bulk Insert Transactional?

If I run the following query in SQL Server 2000 Query Analyzer: BULK INSERT OurTable FROM 'c:\OurTable.txt' WITH (CODEPAGE = 'RAW', DATAFILETYPE = 'char', FIELDTERMINATOR = '\t', ROWS_PER_BATCH = ...
6
votes
1answer
185 views

How to efficiently invoke table-valued parameters from Ado.Net

I need to efficiently submit tens of thousands of numbers and dates from Ado.Net to SQl Server 2008. Back in the days, before SQL 2008, I was packing those numbers in an image, which was quite fast. ...
6
votes
1answer
621 views

SQLBulkCopy or Bulk Insert

I have about 6500 files for a sum of about 17 GB of data, and this is the first time that I've had to move what I would call a large amount of data. The data is on a network drive, but the individual ...
6
votes
5answers
388 views

Delete All / Bulk Insert

First off let me say I am running on SQL Server 2005 so I don't have access to MERGE. I have a table with ~150k rows that I am updating daily from a text file. As rows fall out of the text file I ...
6
votes
4answers
4k views

Bulk Insertion on Android device

I want to bulk insert about 700 records into the Android database on my next upgrade. What's the most efficient way to do this? From various posts, I know that if I use Insert statements, I should ...
6
votes
3answers
665 views

How to use SQLAlchemy to dump an SQL file from query expressions to bulk-insert into a DBMS?

Please bear with me as I explain the problem, how I tried to solve it, and my question on how to improve it is at the end. I have a 100,000 line csv file from an offline batch job and I needed to ...
6
votes
2answers
6k views

NHibernate bulk insert or update

Hi I'm working a project where we need to process several xml files once a day and populate a Database with the information contained in those files. Each file is roughly 1Mb and contains about 1000 ...
5
votes
1answer
171 views

NHibernate disable id generator for bulk operation

I have to bulk import data into my database using nhibernate and my mapped model. I set up a guid.comb generator for ids. Is there's a way to import data with yet assigned ids disabling temporary ...
5
votes
2answers
170 views

Can MySqlBulkLoader be used with a transaction?

Can MySqlBulkLoader be used with a transaction? I don't see a way to explicitly attach a transaction to an instance of the loader. Is there another way?
5
votes
2answers
2k views

Sql server bulk insert/update vs MERGE in insert or update scenario

I need to find the best way to insert or update data in database using sql server and asp.net. It is a standard scenario if data exist it is updated if not it is inserted. I know that there are many ...
5
votes
2answers
235 views

Is it possible to use sql server bulk insert without a file?

Curious if this is possible: The app server and db server live in different places (obviously). The app server currently generates a file for use with sql server bulk insert. This requires both the ...
5
votes
4answers
3k views

Efficent way to bulk insert with get_or_create() in Django (SQL, Python, Django)

Is there a more efficent way for doing this? for item in item_list: e, new = Entry.objects.get_or_create( field1 = item.field1, field2 = item.field2, )
5
votes
3answers
7k views

How do I bulk insert with SQLite?

How do I bulk insert with SQLite? I looked it up and it seems like I do an insert with a select statement. I googled, looked at the examples and they all look like they are copying data from one ...
4
votes
5answers
125 views

Store array contents in database

I have a php function getContactList(): $res = getContactList(trim($_POST['username']), trim($_POST['password'])); which returns this array: $contactList[] = array('name' => $name, 'email' ...
4
votes
2answers
156 views

Bulk insert rowterminator issue

I have this csv named test.csv with the content below 1,"test user",,,4075619900,example@example.com,"Aldelo for Restaurants","this is my deal",,"location4" 2,"joe johnson",,"32 ...
4
votes
4answers
115 views

Multiple inserts in one SQL query

DB: SQL server I am using the below construct for inserting multiple records into a table. I am receiving the data (to be inserted) from other DB. Insert into table1 select '1','2' UNION ...
4
votes
3answers
6k views

How to BULK INSERT a file into a *temporary* table where the filename is a variable?

I have some code like this that I use to do a BULK INSERT of a data file into a table, where the data file and table name are variables: DECLARE @sql AS NVARCHAR(1000) SET @sql = 'BULK INSERT ' + ...
4
votes
4answers
4k views

Slow bulk insert for table with many indexes

I try to insert millions of records into a table that has more than 20 indexes. In the last run it took more than 4 hours per 100.000 rows, and the query was cancelled after 3½ days... Do you have ...
4
votes
8answers
4k views

Bulk insert, SQL Server 2000, unix linebreaks

I am trying to insert a .csv file into a database with unix linebreaks. The command I am running is: BULK INSERT table_name FROM 'C:\file.csv' WITH ( FIELDTERMINATOR = ',', ROWTERMINATOR ...
4
votes
9answers
2k views

What are the pitfalls of inserting millions of records into SQL Server from flat file?

I am about to start on a journey writing a windows forms application that will open a txt file that is pipe delimited and about 230 mb in size. This app will then insert this data into a sql server ...
3
votes
4answers
62 views

Insert excluding the second, adding the first from the existing records

I want to find more efficient way than my solution. So here is the problem: I want to have a bulk insert from a select statement. (Background information: I am using MSSQL 2005) Example of the ...
3
votes
3answers
50 views

Does a MySQL multi-row insert grab sequential autoincrement IDs?

I think this is true, but I haven't found anything on the web to confirm it. I can get the first id generated for the autoincrement field using last_insert_id(), but can I assume that the next records ...
3
votes
1answer
117 views

oracle bulk insert

I am not familiar with PLSQL , however I have to perform a bulk insert for a task. Basically I have to query table one to get one column and then use it on a different table to insert it. Something ...
3
votes
1answer
58 views

Debugging Oracle bulk DML error - how to determine which value caused the error?

I am trying to debug a DML error that is happening in one environment, but not others. The set up is this: I have about 10 sets of DML operations (bulk-fetch from remote table, bulk-insert into local ...
3
votes
4answers
146 views

How can i Insert many rows into a mysql table and get ids back?

Normally i can insert a row into MySql table and get the last_insert_id back. But i want now to bulk insert many rows into the table and get back an array of ids. Does anyone know how i can do that? ...
3
votes
2answers
118 views

how to import large datasets to mysql - the right way?

I have a 400MB *.sql file which is a dump from a MySQL database. I now want to import this to a new database. I used phpmyadmin but it breaks after a few minutes because it cannot handle such large ...
3
votes
1answer
183 views

Bulk Insert into a HEAP vs CLUSTERED index where minimal logging is not an option (SQL Server 2008)

The tool currently used is Informatica and we have bookend stored procedures that drop the clustered indexes and then add them back to the database. In the stored procedure where we add the clustered ...
3
votes
2answers
491 views

SQL Server BULK INSERT - Inserting DateTime values

I have 6 million rows worth of data I want to insert into my SQL Server database. I can do it the slow way with 6 million INSERT statements (by my calculation it would take 18 hours to run) or I can ...
3
votes
2answers
88 views

How to stream data rows into sqlserver?

I need to copy large resultset from one database and save it to another database. Stored procedures are used for both fetching and storing due to the fact that there is some logic involved during ...
3
votes
2answers
142 views

Large SQL inserts TVF vs BULK insert

What is the fastest way to insert a huge array (10M elements) from a C# application? Till now, I used bulk insert. C# app generates a large textual file and I load it with BULK INSERT command . Out ...
3
votes
1answer
429 views

Postgres COPY file with encoding LATIN1 into table with encoding UTF

I have a problem during bulk insert. I'm trying do bulk insert from file with encoding LATIN1 into table where database with encoding UTF8. invalid byte sequence for encoding "UTF8": 0xc33f When I ...
3
votes
2answers
514 views

SQL Server 2008 Batch Insert

I have a dictionary of about 50,000 words; each word has-many synonyms, antonyms, etc. I'm using Fluent NHibernate and I've created a 10gb MS SQL Server instance for the app and I am trying to ...
3
votes
2answers
623 views

Bulk insert from a XML in SQL Server

I am trying to insert data using a XML in SQL Server. The XML I am using is <ArrayOfInfringementEntity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
3
votes
1answer
3k views

Bulk insert using stored procedure

I have a query which is working fine: BULK INSERT ZIPCodes FROM 'e:\5-digit Commercial.csv' WITH ( FIRSTROW = 2 , FIELDTERMINATOR = ',', ROWTERMINATOR = '\n' ) but now I want to ...
3
votes
1answer
2k views

How do I temporarily disable triggers in PostgreSQL?

I'm bulk loading data and can re-calculate all trigger modifications much more cheaply after the fact than on a row-by-row basis. How can I temporarily disable all triggers in PostgreSQL?

1 2 3 4 5 7