Tagged Questions
For issues relating to performing upsert (combination update/insert) operations.
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 ...
49
votes
9answers
22k views
SQLite - UPSERT *not* INSERT or REPLACE
http://en.wikipedia.org/wiki/Upsert
Insert Update stored proc on SQL Server
Is there some clever way to do this in SQLite that I have not thought of?
Basically I want to update three out of four ...
48
votes
11answers
12k views
Insert Update stored proc on SQL Server
I've written a stored proc that will do an update if a record exists, otherwise it will do an insert. It looks something like this:
update myTable set Col1=@col1, Col2=@col2 where ID=@ID
if ...
46
votes
9answers
63k views
Oracle: how to UPSERT (update or insert into a table?)
The UPSERT operation either updates or inserts a row in a table, depending if the table already has a row that matches the data:
if table t has a row exists that has key X:
update t set ...
36
votes
10answers
18k views
Insert, on duplicate update (postgresql)
Several months ago I learnt from here how to perform multiple updates at once in MySQL using the following syntax
INSERT INTO table (id, field, field2) VALUES (1, A, X), (2, B, Y), (3, C, Z)
ON ...
27
votes
2answers
5k views
How do I update if exists, insert if not (aka upsert or merge) in MySQL?
Is there an easy way to INSERT an row when not exists, or to UPDATE if it exists, using one MySQL query?
17
votes
3answers
6k views
SQLite UPSERT - ON DUPLICATE KEY UPDATE
MySQL has something like this:
INSERT INTO visits (ip, hits)
VALUES ('127.0.0.1', 1)
ON DUPLICATE KEY UPDATE hits = hits + 1;
As far as I'm know this feature doesn't exist in SQLite, what I want to ...
16
votes
5answers
4k views
Atomic UPSERT in SQL Server 2005
What is the correct pattern for doing an atomic "UPSERT" (UPDATE where exists, INSERT otherwise) in SQL Server 2005?
I see a lot of code on SO (e.g. see ...
8
votes
7answers
3k views
MySQL “good” way to insert a row if not found, or update it if it is found
Very often, I want to run a query on one of my users where I want a row stored and associated with that user, in a 1-to-1 relationship. So let's say (this is just an arbitrary example), that I have a ...
8
votes
2answers
7k views
Does DB2 have an “insert or update” statement?
From my code (Java) I want to ensure that a row exists in the database (DB2) after my code is executed.
My code now does a select and if no result is returned it does an insert. I really don't like ...
6
votes
1answer
197 views
How to do an upsert with SqlAlchemy?
I have a record that I want to exist in the database if it is not there, and if it is there already (primary key exists) I want the fields to be updated to the current state. This is often called an ...
5
votes
2answers
164 views
Complex TSQL Merge
I have 'inherited' a brilliant piece of TSQL code that does this:
Loops row-by-row over a cursor.
The cursor contains data that need to be merged (Upserted) in Table A
For each row loop in the ...
5
votes
4answers
3k views
If Record Exists, Update Else Insert
I'm trying to move some data between two SQL Server 2008 tables. If the record exists in Table2 with the email from Table1 then update that record with the data from Table1, else insert a new record.
...
4
votes
2answers
958 views
Insert or Update using Oracle and PL/SQL
I have a PL/SQL function that performs an update/insert on an Oracle database that maintains a target total and returns the difference between the existing value and the new value.
Here is the code I ...
4
votes
5answers
1k views
Upsert (update or insert) in Sybase ASE?
I'm writing an application to move data from Oracle to Sybase and need to perform update / insert operations. In Oracle, I'd use MERGE INTO, but it doesn't seem to be available in Sybase (not in ASE, ...
4
votes
1answer
1k views
syntax for single row MERGE / upsert in SQL Server
I'm trying to do a single row insert/update on a table but all the examples out there are for sets.
Can anyone fix my syntax please:
MERGE member_topic ON mt_member = 0 AND mt_topic = 110
WHEN ...
4
votes
5answers
13k views
How do I Insert or Update (or overwrite) a record using NHibernate?
I need to write a row to the database regardless of whether it already exists or not. Before using NHibernate this was done with a stored procedure. The procedure would attempt an update and if no ...
3
votes
2answers
74 views
TSQL Large Insert of Relational Data, W/ Foreign Key Upsert
Relatively simple problem.
Table A has ID int PK, unique Name varchar(500), and cola, colb, etc
Table B has a foreign key to Table A.
So, in the application, we are generating records for both ...
3
votes
1answer
192 views
update record if exists, else write new record?
I'm trying to execute this query and when it finds a record for $serial, it can update it. OR, if the serial doesn't exist, it can write a new record.
I get syntax erros but to me it seems fine. ...
3
votes
3answers
1k views
Upsert Multiple Records with MongoDb
I'm trying to get MongoDB to upsert multiple records with the following query, ultimately using MongoMapper and the Mongo ruby driver.
db.foo.update({event_id: { $in: [1,2]}}, {$inc: {visit:1}}, ...
3
votes
4answers
2k views
Add or replace entity in Azure Table Storage
I'm working with Windows Azure Table Storage and have a simple requirement: add a new row, overwriting any existing row with that PartitionKey/RowKey. However, saving the changes always throws an ...
3
votes
4answers
3k views
check if record exists “update” if not “insert” stored procedure
hey guys I got this. I want to check table PREMIUM_SERVICE_USER if any records exists for
strClientID update timeValid for +30 if no records for strClientID insert to premium_service_user table.. ...
3
votes
2answers
685 views
Oracle - UPSERT with update not executed for unmodified values
I'm using following update or insert Oracle statement at the moment:
BEGIN
UPDATE DSMS
SET SURNAME = :SURNAME
WHERE DSM = :DSM;
IF (SQL%ROWCOUNT = 0) THEN
INSERT INTO DSMS
(DSM, ...
3
votes
5answers
7k views
Oracle PLS-00103 error. How do you check for an existing record and do update or insert based on that condition?
I need to check if a record exists in the table or not from a SELECT statement. If the record exists, do an update otherwise create a record on the table. I'm trying to but i'm getting PLS-00103 ...
3
votes
6answers
2k views
What is the correct/ fastest way to update/insert a record in sql (Firebird/MySql)
I need some SQL to update a record in a database if it exists and insert it when it does not, looking around there looks to be several solutions for this, but I don't know what are the correct/ ...
2
votes
3answers
47 views
What's wrong with this T-SQL MERGE statement?
I am new to MERGE, and I'm sure I have some error in my code.
This code will run and create my scenario:
I have two tables, one that is called TempUpsert that fills from a SqlBulkCopy operation ...
2
votes
2answers
93 views
Is it possible to update a subdocument via Mongoose using an $inc?
I have a document that looks like:
{
"personName": "Some name",
"metaDetails": {
"visits": 1,
"otherMeta": 32
}
}
Using Mongoose for Node.js. I'd like to update (or ...
2
votes
1answer
210 views
IF-Statement in SQLite: update or insert?
I Can't run this query with SQLite
if 0<(select COUNT(*) from Repetition where (Word='behnam' and Topic='mine'))
begin
update Repetition set Counts=1+ (select Counts from Repetition where ...
2
votes
2answers
219 views
Upserting in MS-access
I need to write an SQL query for MS-Access 2000 so that a row is updated if it exists, but inserted if it does not. (I believe this is called an "upsert")
i.e.
If row exists...
UPDATE Table1 SET ...
2
votes
1answer
176 views
What is the most efficient / best practise to Upsert 5000+ rows without Merge in SQL Server?
I have a web application which receives about 50 hits per second, and on each hit I am upsert'ing around 10 records in a central SQL Server database. Roughly once every 3 seconds I am upserting 5000+ ...
2
votes
1answer
259 views
Using Postgres SQL, what is the fastest transaction to emulate an UPSERT for a single row?
This question is about a single row, not a set. I'm just curious what is faster using the latest and greatest version of Pg (9.0) and why:
A conditional UPDATE or INSERT on the basis of a SELECT ...
2
votes
1answer
473 views
Is LockModeType.PESSIMISTIC_WRITE sufficient for an UPSERT in JPA?
I've read this article on JPA concurrency, but either I am too thick or it is not explicit enough.
I am looking to do a database-controlled atomic update-if-found-else-insert operation (an UPSERT).
...
2
votes
1answer
366 views
How to mimic upsert behavior using Hibernate?
I'm writing an application that sync's entities from a third party datasource into our own schema, with a transformation/mapping step in between. I'm using Hibernate to represent and persist the ...
2
votes
3answers
3k views
Postgres UPSERT (INSERT or UPDATE) only if value is different
I'm updating a Postgres 8.4 database (from C# code) and the basic task is simple enough: either UPDATE an existing row or INSERT a new one if one doesn't exist yet. Normally I would do this:
UPDATE ...
2
votes
2answers
299 views
GridFS in Ruby: How to upsert?
Does GridFS have an upsert?
For example, if i want to save an image with a specified _id, and one with that same _id already exists, i want it to overwrite (update) it. Otherwise, insert it.
2
votes
2answers
318 views
How do I do batch upserts in SQL Server?
I'm using the MERGE statement to upsert rows in an sql server 2008 database. However, my sproc is a single-row operation, whereas in fact I'd prefer to batch these. Is this even possible and, if so, ...
2
votes
1answer
530 views
Oracle MERGE does not INSERT
I have this simple example I can't seems to get working :
MERGE INTO mytable mt
USING dual
ON (mt.id = 'AAA' )
WHEN MATCHED THEN
UPDATE SET mt.name = 'updated'
WHEN NOT MATCHED THEN
...
2
votes
3answers
138 views
What is the preferred merge method for SQL Server 2005?
I have mainly been using the Exists Method for merging a row into a table but I am considering switching to the Row Count Method. Is there any reason not to?
Exists Method
If Exists(Select * From ...
1
vote
1answer
65 views
Duplicate key error during upsert [Explanation]
I am executing the below statement in a class. This code is from
$query = array('_id' => $id, 'lock' => 0);
$update = array('$set' => array('lock' => 1));
$options = array('safe' => ...
1
vote
3answers
70 views
How do I force an INSERT into a table with a unique key if it's already in the table?
I have a table:
CREATE TABLE Students (studentId TEXT PRIMARY KEY, name TEXT);
I want to insert records into the table, if I insert a student twice I want
the second insert to override(update) the ...
1
vote
3answers
188 views
ASP Update database, insert if does not exist
I have a CSV I need to loop through, get the ID of each row, then loop through the database, comparing the csvID to each dbID. If the ID exists in the database, it will then update the record with ...
1
vote
1answer
89 views
Bulk upsert with Ruby on Rails
I have a Rails 3 application where I need to ingest an XML file provided by an external system into a Postgres database. I would like to use something like ActiveRecord-Import but this does not ...
1
vote
0answers
83 views
MongoDb Upsert Deadlock
Is it possible to reach deadlocks on MongoDb upsert operations?
I'm performing a load-test on an upsert operation that looks like:
db.update(
{ foo: {a: 'xxx', b: 'yyy'}, $lt: {"order.date": ...
1
vote
1answer
156 views
How to get Inserted or selected row id in postgres using python
My postgres query is:
query = """INSERT INTO statustable(value) SELECT '%s'
WHERE NOT EXISTS (SELECT id, value FROM statustable
WHERE value = '%s') RETURNING id""" % ...
1
vote
5answers
186 views
Postgresql - Clean way to insert records if they don't exist, update if they do
Here's my situation. I have a table with a bunch of URLs and crawl
dates associated with them. When my program processes a URL, I want
to INSERT a new row with a crawl date. If the URL already ...
1
vote
2answers
122 views
How to upsert two database tables with one SQL statement?
There are two database tables described in the following. The asterisk highlights the primary keys.
+----------------+ +----------------+
| posts | | url_references |
...
1
vote
0answers
113 views
Deadlocks in SQL Server 2008 R2
Server: SQL Server 2008R2
Clients: Excel/ADO - 8 clients
Server hardware: 8 core/16GB Memory/OS:WinServer 2008SR2
Deadlocks happening on both Insert/Update and Merge/Matched stored procedures.
I ...
1
vote
3answers
216 views
How to Update if the data exist else insert the new data (multiple rows)
I need to create a insert and update statement, when today date is not in the database it will insert else it will update the QTY (from excel [this part I have done]) get from today.
But, there have ...
1
vote
1answer
171 views
How to Perform an UPSERT so that I can use both new and old values in update part
Stupid but simple example:
Assume I have a table 'Item' where I keeps totals of the items that receive.
Item_Name Items_In_Stock
Item name is primary key here. How to i achieve the ...
1
vote
1answer
130 views
Doing UPSERT when row is referenced by a FK
Let's say that I have a table of items, and for each item, there can be additional information stored for it, which goes into a second table. The additional information is referenced by a FK in the ...