Tagged Questions

A data entry mode. An example would be new data typed on the keyboard to be inserted at the current cursor location on screen.

learn more… | top users | synonyms (1)

63
votes
7answers
67k views

“INSERT IGNORE” vs “INSERT … ON DUPLICATE KEY UPDATE”

While executing an INSERT statement with many rows, I want to skip duplicate entries that would otherwise cause failure. After some research, my options appear to be the use of either: "ON ...
63
votes
18answers
50k 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 ...
51
votes
1answer
32k views

Javascript - 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 ...
22
votes
9answers
45k views

SQL Server: Is it possible to insert into two tables at the same time?

My database contains three tables called Object_Table, Data_Table and Link_Table. The link table just contains two columns, the identity of an object record and an identity of a data record. I want ...
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 ...
20
votes
2answers
2k views

LINQ to SQL - No Add method available

I have created a LINQ to SQL datacontext with a single datatable in it. I am trying to simply insert a new record into that table. The problem I am coming across is LINQ is not offering an Add ...
17
votes
2answers
122 views

coupon code statistics

I have a system that allows users to enter coupons (for example like dell or amazon) I want to know how much a coupon has been used so after 500 times the coupon is no longer valid. The way I am ...
14
votes
2answers
104 views

Unique record mysql on inserts

I want to implement a new system for referal/promotions. my new system where when a user register a specific source is assig to him. A source can be anything from referal (clients domain) and a ...
13
votes
7answers
5k views

MySQL Conditional Insert

I am having a difficult time forming a conditional INSERT I have x_table with columns (instance, user, item) where instance ID is unique. I want to insert a new row only if the user already does not ...
12
votes
7answers
7k 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 ...
11
votes
4answers
575 views

Efficient way to ensure unique rows in SQLite3

I am using SQLite3 in one of my projects and I need to ensure that the rows that are inserted into a table are unique with regard to a combination of some of their columns. In most cases the rows ...
11
votes
6answers
2k views

How to improve INSERT INTO … SELECT locking behavior

In our production database, we ran the following pseudo-code SQL batch query running every hour: INSERT INTO TemporaryTable (SELECT FROM HighlyContentiousTableInInnoDb WHERE ...
11
votes
8answers
2k views

SQL Server insert performance

I have an insert query that gets generated like this INSERT INTO InvoiceDetail ...
11
votes
6answers
7k views

PDO Prepared Inserts multiple rows in single query

I am currently using this type of SQL on MySQL to insert multiple rows of values in one single query: INSERT INTO tbl (key1,key2) VALUES ('r1v1','r1v2'),('r2v1','r2v2'),... On the readings on ...
11
votes
5answers
14k 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 ...
10
votes
4answers
270 views

C++0x issue: Constant time insertion into std::set

According to this page, I can achieve constant time insertion if I use iterator std::set::insert ( iterator position, const value_type& x ); and the position iterator I provide directly ...
10
votes
6answers
13k views

Inserting multiple rows in a single SQL query?

data is like 4 persons in each row their ids and office region. person id office in 3 columns
9
votes
2answers
150 views

SQL Server list of insert identities

I have a table with an autoincrement id that I am doing a INSERT INTO ( ... ) SELECT ... FROM ... Is there a way for me to get the list of id's that have been inserted? I was thinking I could get ...
9
votes
3answers
4k views

Android SQLite database: slow insertion

I need to parse a fairly large XML file (varying between about a hundred kilobytes and several hundred kilobytes), which I'm doing using Xml#parse(String, ContentHandler). I'm currently testing this ...
9
votes
6answers
228 views

Which is faster, EXISTS before or after the INSERT?

I have an SP in SQL Server which runs hundreds of times a minute, and needs to check incoming traffic against a database. At the moment it does the following INSERT INTO table SELECT @value1,@value2 ...
9
votes
8answers
2k views

What's the most efficient way to insert thousands of records into a table (MySQL, Python, Django)

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 receive ...
8
votes
2answers
83 views

Mysql: SELECT * FROM … without one field

For duplicating an entry I would like to use the following syntax: insert into TABLE select * from TABLE where ... However, as the first column is an auto-increment primary key, this value must be ...
8
votes
4answers
101 views

How to get the ID of INSERTed row in mysql?

I am INSERTing some words into a two-column table with this command INSERT IGNORE INTO terms (term) VALUES ('word1'), ('word2'), ('word3') How can I get the ID (Primary Key) of the row in which ...
8
votes
5answers
757 views

Why does MS Access 2007 not allow a row insert, but then allow it on the next insert attempt?

My insert statement is: INSERT INTO myTable (inst_id,user_id,app_id,type,accessed_on) VALUES (3264,2580,'MyApp','Renew',Now); ...where all of the values are formatted correctly. The table has the ...
8
votes
2answers
2k views

Implementing if-not-exists-insert using Entity Framework without race conditions

Using LINQ-to-Entities 4.0, is there a correct pattern or construct for safely implementing "if not exists then insert"? For example, I currently have a table that tracks "user favorites" - users can ...
8
votes
3answers
3k views

php array insert new item in any position

how can i add new item to array? for example in the middle of array?
8
votes
10answers
8k views

In TSQL (SQL Server), How do I insert multiple rows WITHOUT repeating the “INSERT INTO dbo.Blah” part of the statement?

I know I've done this before years ago, but I can't remember the syntax, and I can't find it anywhere due to pulling up tons of help docs and articles about "bulk imports". Here's what I want to do, ...
8
votes
2answers
318 views

append set to another set

Is there a better way of appending a set to another set than iterating through each element ? i have : set<string> foo ; set<string> bar ; ..... for (set<string>::const_iterator ...
8
votes
2answers
17k views

Using insert rows in a UITableView

I'd like my UITableView to behave like the the table in the Contacts editor, i.e. the user should hit Edit and an "add new category" row should appear at the bottom of each section. I'm using the ...
7
votes
6answers
722 views

Mysql Slow Insert

i have the following InnoDB table: +-----------+-----------+------+-----+-------------------+----------------+ | Field | Type | Null | Key | Default | Extra | ...
7
votes
3answers
169 views

mysql delayed insert timestamp

I have a table with a field:: ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP My question is, if I use delayed insert on this table, will the timestamp be the time when the request is queued or the time when ...
7
votes
1answer
1k views

In Perl, how do I change, delete, or insert a line in a file, or append to the beginning of a file?

I want to make changes to the contents of a file by modifying, deleting or inserting lines or appending to the beginning of the file. How can I do that in Perl? This is a question from the official ...
7
votes
5answers
779 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 ...
7
votes
3answers
4k views

Inserting Line at Specified Position of a Text File in Python

I have a text file which looks like this: blah blah foo1 bar1 foo1 bar2 foo1 bar3 foo2 bar4 foo2 bar5 blah blah Now I want to insert 'foo bar' between 'foo1 bar3' and 'foo2 bar4'. This is how I ...
7
votes
4answers
3k views

Getting new IDs after insert in SQL Server 2008

I'm inserting a bunch of new rows into a table which is defined as follows: CREATE TABLE [sometable]( [id] [int] IDENTITY(1,1) NOT NULL, [someval] sometype NOT NULL ) using the following ...
7
votes
3answers
14k views

How does one insert a column into a dataset between two existing columns?

I'm trying to insert a column into an existing DataSet using C#. As an example I have a DataSet defined as follows: DataSet ds = new DataSet(); ds.Tables.Add(new DataTable()); ...
7
votes
6answers
382 views

What is the best way to achieve speedy inserts of large amounts of data in MySQL?

I have written a program in C to parse large XML files and then create files with insert statements. Some other process would ingest the files into a MySQL database. This data will serve as a ...
7
votes
3answers
3k 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 - ...
6
votes
4answers
384 views

MySQL's INSERT IGNORE INTO & foreign keys

Why in MySQL, INSERT IGNORE INTO does not change the foreign key constrain errors into warnings? I'm trying to insert a number of records into a table and I expect MySQL to leave out the ones that ...
6
votes
3answers
378 views

MyISAM Selects locks inserts inside procedure only

We have a large MyISAM table to which rows get inserted to the bottom of the table only. While doing some benchmarks, i realized that selects do not (always) lock other inserts to that same table. ...
6
votes
5answers
3k views

How can I INSERT data into two tables simultaneously in SQL Server?

Let's say my table structure looks something like this: CREATE TABLE [dbo].[table1] ( [id] [int] IDENTITY(1,1) NOT NULL, [data] [varchar](255) NOT NULL, CONSTRAINT [PK_table1] PRIMARY KEY ...
6
votes
5answers
9k views

SQLite - INSERT IF NOT EXISTS ELSE UPDATE?

I've found a few "would be" solutions for the classic "How do I insert a new record or update one if it already exists" but I cannot get any of them to work in SQLite. I have a table defined as ...
6
votes
2answers
1k views

std::inserter with set - insert to begin() or end()?

I have some code that looks like this: std::set<int> s1, s2, out; // ... s1 and s2 are populated ... std::set_intersection(s1.begin(), s1.end(), s2.begin(), s2.end(), ...
6
votes
2answers
324 views

Where to rollback a transaction in PDO?

my problem is , i have a database design from this link http://stackoverflow.com/questions/3305825/is-my-database-overdesigned edit* ok maybe useing transaction ? but where should i put the rollback ...
6
votes
2answers
638 views

Java + Mysql UTF8 Problem

as the title said, I have a problem between java and mysql The mysql DB, tables, and columns are utf8_unicode_ci. I have an application that took some input from an xml, then compose the query... ...
6
votes
5answers
290 views

How to achieve better efficiency re-inserting into sets in C++

I need to modify an object that has already been inserted into a set. This isn't trivial because the iterator in the pair returned from an insertion of a single object is a const iterator and does not ...
6
votes
4answers
543 views

Increment a database field by 1

With MySQL, if I have a field, of say logins, how would I go about updating that field by 1 within a sql command? I'm trying to create an INSERT query, that creates firstName, lastName and logins. ...
6
votes
6answers
695 views

SQL Server INSERT, Scope_Identity() and physical writing to disc

I have a stored procedure that does, among other stuff, some inserts in different table inside a loop. See the example below for clearer understanding: INSERT INTO T1 VALUES ('something') SET @MyID ...
6
votes
4answers
227 views

Is there a way to conditionally use default column values in an INSERT..SELECT statement?

I've got code similar to the following in a stored procedure that inserts a row into a table, I'd like to set the last column (FieldD) to @prmSomeValue unless it is null, otherwise just use the ...
6
votes
2answers
282 views

Not inserting correct values into MySQL database

I'm having some trouble using MySQLi to insert values into a database. I don't get any errors, but the values being inserted are not correct at all. One of the TEXT fields is always empty, and the ...

1 2 3 4 5 50