12
votes
13answers
4k views
Solutions for INSERT OR UPDATE on SQL Server
Assume a table structure of MyTable(KEY, datafield1, datafield2...)
Often I want to either update an existing record, or insert a new record if it doesn't exist.
essentially
if (key exists)
Run …
8
votes
5answers
2k 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 …
6
votes
5answers
291 views
What does database query and insert speed depend on?
At my work we have a small database (as in two hundred tables and maybe a total of a million of rows or so).
I've always expected it to be quite fast in the order of several ten of thousands …
6
votes
1answer
2k views
jQuery - insert item into array at a specific index
I am looking for a JavaScript array insert method, in the style of:
arr.insert(index, item)
Preferably in jQuery, but any JavaScript implementation will do at this point because I can't believe the …
5
votes
1answer
349 views
c# datatable insert column at position 0
Hi, does anyone know the best way to insert a column in a datatable at position 0?
5
votes
4answers
325 views
Sql insert query performance
I want to insert n records into a single table. There may be many concurrent users and they may insert/update/select data from this table. What is better way to insert in a such table say 1000 …
5
votes
4answers
700 views
Efficent way to insert thousands of records into a table (SQLite, Python, Django)
I have to insert 8000+ records into a SQLite database using Django's ORM. This operation needs to be run as a cronjob about once per minute. At the moment I'm using a for loop to iterate through all …
5
votes
8answers
731 views
What’s the most efficient way to insert thousands of records into a table (MySQL, Python, Django)
Hello,
I have a database table with a unique string field and a couple of integer fields. The string field is usually 10-100 characters long.
Once every minute or so I have the following scenario: I …
5
votes
3answers
292 views
Using set.insert( key ) as a conditional?
I am trying to use set.insert (key) as a conditional, where if the key is inserted correctly (meaning that the key does NOT already exsist in the set ) then it should go on and perform some kind of …
5
votes
2answers
1k views
hibernate insert batch with postgresql
is there a solution for batch insert via hibernate in partitioned postgresql table? currently i'm getting an error like this...
57286 [pool-1-thread-18] ERROR org.hibernate.jdbc.AbstractBatcher - …
4
votes
1answer
173 views
Setting up/Inserting into Many-to-Many Database with Python, SQLALchemy, Sqlite
I am learning Python, and as a first project am taking Twitter RSS feeds, parsing the data, and inserting the data into a sqlite database. I have been able to successfully parse each feed entry into a …
4
votes
3answers
124 views
SQL fast INSERTs with no UPDATEs
We are using a single table for Auditing in a SQL Server 2008 DB.
The single table architecture works nicely, is simple to query, accommodates schema changes.
But it is a major bottleneck for the …
4
votes
3answers
204 views
in vim, how to append/insert text with argdo?
There's the ":a" command, but that's multi-line, and argdo asks you for the text again for each file.
The docs mention the global command (g/pat/command) that will use an alternative version of ":a" …
4
votes
5answers
2k views
Mysql - ignore insert error: duplicate entry
I am working in PHP.
Please what's the proper way of inserting new records into the DB, which has unique field.
I am inserting lot of records in a batch and I just want the new ones to be inserted …
4
votes
5answers
460 views
Optimizing the speed of insertion in java.util.Map/Set
Hi all,
is there a way to optimize the speed of the insertions in a java.util.Collection by specifying the order of the items ?
For example
java.util.Set<String> set = …
