Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
10answers
14k views

Faster bulk inserts in sqlite3?

I have a file of about 30000 lines of data I want to load into a sqlite3 database. Is there a faster way that generating insert statements for each line of data? The data is space delimited and maps ...
12
votes
7answers
3k views

Avoid being blocked by web mail companies for mass/bulk emailing?

Our company is sending out a lot of emails per day and planning to send even more in future. (thousands) Also there are mass mailouts as well in the ten thousands every now and then. Anybody has ...
9
votes
6answers
1k views

Is there a simple way to do bulk file text substitution in place?

First of all, I'm a Perl newbie, so please be gentle =) I've been trying to code a Perl script to substitute some text on all source files of my project. I'm in need of something like: perl -p ...
5
votes
4answers
301 views

Deadlock in SQL Server 2005! Two real-time bulk upserts are fighting. WHY?

Here's the scenario: I've got a table called MarketDataCurrent (MDC) that has live updating stock prices. I've got one process called 'LiveFeed' which reads prices streaming from the wire, ...
5
votes
6answers
2k views

SQL Server - bulk delete (truncate vs delete)

We have a table with a 150+million records. We need to clear/delete all rows. Delete operation would take forever due to it writing to the t-logs and we cannot change our recovery model for the ...
4
votes
3answers
322 views

Bulk MySql insert from huge array: optimization question

I've been asked to choose which is the best option out of three in terms of resource optimization.Suppose I have a big Excel file of thousands of records, and I need to extract these data and insert ...
4
votes
2answers
485 views

OracleBulkCopy Performance

My C# .NET app writes millions of records to a temp table using OracleBulkCopy. Every time the app has 20000 records or more in memory it call OracleBulkCopy to write all of them in a single batch (I ...
4
votes
2answers
342 views

How can I delete expired data from a huge table without having the log file grow out of control?

I have a huge table (3 billion rows), which unfortunately contains mostly expired data. I want to simply delete all of these expired rows, and keep the rest. I can execute a statement like this: ...
4
votes
1answer
102 views

Is there a good utility / 3rd party library to manage the AppEngine datastore?

I have been developing an app using appengine. We are likely to be storing a lot of records in the datastore but I find the admin functionality you are given to manage this data lacking. As an ...
4
votes
4answers
474 views

Do not allow a user to delete a node but allow to delete through Views Bulk Operations

I have the following scenario: Editor Role should not be allowed to delete nodes. Therefore the corresponding permission is de-selected in the permissions page. However Editor should be able to to ...
4
votes
6answers
3k views

Is there a bulk email plugin for Rails apps?

Does anyone know of a plugin or something that can be used to send bulk emails for a Rails app? Specifically, I'd like to be able to pass an HTML email file to a rake task or something and have it ...
3
votes
2answers
53 views

Bulk update of tables in Oracle

I have a requirement where I need to make bulk updates to a table from a flat file in a Java program. The flat file will have thousands of entries with Comma Separated Values. So if the entry in the ...
3
votes
2answers
222 views

Why is PL/SQL Bulk DML running slowing for large datasets with parent-child constrained tables?

I have been trying to figure out why this PL/SQL purge script runs slowly for datasets where the record table has a a few hundred thousand or more records. Prior to script execution, a certain subset ...
3
votes
4answers
384 views

C# Fast CSV reading from many files

I have a folder with 3000 csv files ranging in size from 1Kb to 100kb. Every row in these files are 43 characters long. They have a total size of 171Mb. I am trying to write a program to parse these ...
3
votes
1answer
1k views

How to insert bulk data into mysql table from asp.net at once

I have a requirement that I need to read an excel sheet using asp.net/C# and insert all the records into mysql table.The excel sheet consists of around 2000 rows and 50 columns. Currently,upon reading ...
3
votes
2answers
608 views

Linq to Nhibernate Bulk Update Query Equivelent?

Not sure if I'm missing anything here. Basically, I am looking for Linq to Nhibernate to do the following SQL statement: update SomeTable set SomeInteger = (SomeInteger + 1) where SomeInteger > ...
3
votes
9answers
711 views

How can I easily bulk rename files with Perl?

I have a lot of files I'm trying to rename, I tried to make a regular expression to match them, but even that I got stuck on the files are named like: File Name 01 File Name 100 File ...
3
votes
3answers
1k views

Update the results of a SELECT statement

Oracle lets you update the results of a SELECT statement. UPDATE (<SELECT Statement>) SET <column_name> = <value> WHERE <column_name> <condition> <value>; I ...
3
votes
4answers
2k views

how does one upload data in bulk to a google appengine datastore?

I have about 4000 records that i need to upload to the datastore. They are currently in CSV format. I'd appreciate if someone would point me to or explain how to upload data in bulk to GAE. Thank ...
3
votes
3answers
2k views

SQL Server Bulk Insert failing when called from .NET SqlCommand

I have a stored procedure which does bulk insert on a SQL server 2005 database. When I call this stored procedure from some SQL (passing in the name of a local format file and data file) it works ...
3
votes
6answers
2k views

What is the fastest way to parse text with custom delimiters and some very, very large field values in C#?

I've been trying to deal with some delimited text files that have non standard delimiters (not comma/quote or tab delimited). The delimiters are random ASCII characters that don't show up often ...
3
votes
12answers
2k views

How to change slow parametrized inserts into fast bulk copy (even from memory)

I had someting like this in my code (.Net 2.0, MS SQL) SqlConnection connection = new SqlConnection(@"Data Source=localhost;Initial Catalog=DataBase;Integrated Security=True"); connection.Open(); ...
2
votes
1answer
103 views

What's the best practice for initial (bulk) data import into RESTful system?

What would you consider a clean and efficient way to initially populate a data storage which is part of a RESTful distributed system architecture? We do already have a POST method for bulk ...
2
votes
1answer
41 views

SQL Statement deleting entire table

I have two tables that both have an ID number which are linked together (AllUsers and AllProfiles). When the user presses a button, I want the AllUsers table to check for IDs it has that are not ...
2
votes
0answers
68 views

How do I bulk upload Couchdb attachments?

I am converting my sqlite database to Couchdb. I can convert the db and upload to the Couchdb server. Everything but the images. I want to upload the images as standalone attachments and I would like ...
2
votes
1answer
132 views

bulk inserts with SQLite and CoreData

I have a CoreData model that uses SQLite as persistence store. I need to insert large numbers of rows after doing some processing to each record. Is there any way to send those commands to SQLite ...
2
votes
2answers
136 views

Applying DOM Manipulations to HTML and saving the result?

I have about 100 static HTML pages that I want to apply some DOM manipulations to. They all follow the same HTML structure. I want to apply some DOM manipulations to each of these files, and then save ...
2
votes
1answer
97 views

SQL Server 2005 BULK INSERT's Committed Count

I use BULK INSERT WITH BATCHSIZE OPTION. How can I Get Committed Count When the BULK INSERT fail in processing. like: BEGIN TRY BULK INSERT t1 FROM "C:\temp\temp.dat" WITH(BATCHSIZE=1000) END TRY ...
2
votes
4answers
109 views

Huge transaction in Sql Server, are there any problems?

I have a program which does many bulk operations on an SQL Server 2005 or 2008 database (drops and creates indexes, creates columns, full table updates etc), all in one transaction. Are there any ...
2
votes
4answers
248 views

bulk update huge table

I have a table that has 26 columns with a couple of thousand records. Is there a way to bulk update this table? Right now I just do a standard update on each column that needs updating. E.g. update ...
2
votes
2answers
284 views

Google App Engine Bulk download

I was downloading data(more than 1 GB) from datastore using bulk download. Suddenly, my internet stopped working and download process stopped in middle. I want to resume from where it stopped. When I ...
2
votes
2answers
428 views

Oracle Column/Value size Issue

I'm using ODP.NET and Oracle 10g to transfer data from a datatable to a db table. The problem i'm facing is when trying to insert a value into a NUMBER(12,3) column. The value is 100100100,55 - i get ...
2
votes
3answers
330 views

NHibernate does not seems doing Bulk Inserting into PostgreSQL

I am interfacing with a PostgreSQL database with NHibernate. Background I made some simple tests...it seems it's taking 2 seconds to persist 300 records. I have a Perl program with identical ...
2
votes
1answer
52 views

Simple bulk data persistance framework

Is there an ACID framework for bulk data persistance, which would also allow some basic search capabilities? I am not looking for a full blown DBMS, but rather something fast, light and simple. Even ...
2
votes
1answer
169 views

CouchDb bulk rename

For example I have posts with tag names, and I decided to rename one of the tags. Bulk Updating when I should know revision is not really suitable. Better if this could be as something integrated.
2
votes
2answers
88 views

Bulk message sending with publish/subscribe model

We are trying to implement a notification module. It allows website internal users to send message to each other. A key feature is that it allows business users to send bulk messages to the users. We ...
2
votes
4answers
503 views

How to send bulk emails with good success rate?

There are many articles and threads about guidelines while sending bulk emails. Most of the times it was mentioned that emails should be sent to the subscribed users. So that we can avoid "users ...
2
votes
1answer
69 views

Is the time cost constant when bulk inserting data into an indexed table?

I have created an archive table which will store data for selecting only. Daily there will be a program to transfer a batch of records into the archive table. There are several columns which are ...
2
votes
6answers
301 views

Performing bulk processing in ASP.NET page

We need the ability to send out automatic emails when certain dates occur or when some business conditions are met. We are setting up this system to work with an existing ASP.NET website. I've had a ...
2
votes
2answers
428 views

What's the fastest way to INSERT loads of data from one table to another? (SQL Server 2005)

I'm basically trying to copy data from a table in one database in SQL Server 2005 to another table, with the same structure (but lots of indexes) in another database in the same SQL Server instance. ...
2
votes
1answer
881 views

Microsoft Sql Management Studio, SQL Server Agent, Build a Insert Bulk with dynamic parameters

Here is the syntax to start with (classified data omitted) BULK INSERT [dbName].[dbo].[data_200801] FROM '\\servername\wwwroot\path\Files\data_200904.csv' WITH ( FIELDTERMINATOR = ...
2
votes
1answer
2k views

How do I bulk upload to s3?

I recently refactored some of my code to stuff rows into a db using 'load data' and it works great -- however for each record I have I must upload 2 files to s3 -- this totally destroys the ...
2
votes
1answer
2k views

SQL Server recovery and bulk recovery mode confusions

I have 2 confusions about SQL Server recovery and bulk recovery mode. whether recovery process itself will generate transaction log (here what I mean the logs are the logs generated by recovery ...
2
votes
5answers
2k views

Building a bulk mail sender

I want to build an application that will allow my customers to send marketing information by e-mail. This will be a carefully monitored tool used for legitimate bulk mailing only. It's going to have ...
1
vote
2answers
28 views

Best way to insert multiple rows into SQL Server 2008 database from .NET 4.0 app

I have a scenario where I get back a list of items and I need to insert each item into a database, with one item > one row mapping. Initially, I thought about using a stored procedure that would ...
1
vote
1answer
58 views

Bulk Collect From Oracle and fill to a DataTable in C#

In my project I need to get over 10,000,000 records from Oracle database, for improving efficiency. I write a SP and use BULK COLLECT, BULK COLLECT is fast for selecting, isn't it? The procedure is ...
1
vote
3answers
86 views

Bulk Insert via Spring/Hibernate where ids are needed

I have to do bulk inserts, and need the ids of what's being added. This is a basic example that shows what I am doing (which is obviously horrible for performance). I am looking for a much better ...
1
vote
1answer
76 views

Oracle PL/SQL Bulk Collect into one column of collection based on condition

I have the following table in one schema: User_Codes(useri_id, user_code). I want to access this table from another schema in a stored proc and minimize the number of round trips between schemas. In ...
1
vote
2answers
82 views

Python - Bulk Select then Insert from one DB to another

I'm looking for some help on how to do this in Python using sqlite3 Basically I have a process which downloads a DB (temp) and then needs to insert it's records into a 2nd identical DB (the main ...
1
vote
2answers
60 views

consumer producer c# implementation with 1 timed consumer for a bulk sending algorithm

I need to implement a module that can have multiple inputs to a dictionary (multiple threads writing to a dictionary) and 1 timed consumer that takes this dictionary, sends it away using some ISender ...

1 2 3 4