For issues relating to performing upsert (combination update/insert) operations.

learn more… | top users | synonyms

0
votes
1answer
34 views

MongoDB merge 2 very similar collections. Existing documents - update, new documents - insert

I have 2 collections (A and B) with ~70,000 documents each. If I were to compare A and B, 95% of documents would be the same, only 5% would be different. Structure of each document is completely ...
1
vote
1answer
57 views

Oracle: Fastest way to UPSERT and return the last affected Row ID in oracle for large data sets

This table schema in question is here: Oracle SQL: Selecting a single row with the latest date between multiple columns I'm working with a table that has over 5 million entries. What is the fastest ...
1
vote
1answer
32 views

Error in my SQL statement (UPSERT)

I'm trying to do an UPSERT (since that's what it appears to be called) and I'm getting an error: Microsoft JET Database Engine error '80040e14' Syntax error (missing operator) in query expression ... ...
0
votes
0answers
23 views

concurrency issues while upserting and then reading the data from mongodb using mongoose

Hi I am trying to build an application which upserts data and fetches from the mongodb baser on the userid.This approach works fine for a single user.But when i try hitting for multiple users say 25 ...
1
vote
3answers
60 views

Insert a row every given time else update previous row (Postgresql, PHP)

I have a multiple devices (eleven to be specific) which sends information every second. This information in recieved in a apache server, parsed by a PHP script, stored in the database and finally ...
1
vote
1answer
46 views

pymongo DuplicateKeyError - durring upsert

I have noticed a strange behaviour of the pymongo library. When I run the following code from my unit test, everything is ok (the 2 documents are stored in their collection and the _id is set). ...
0
votes
1answer
93 views

Mongodb upsert throwing DuplicateKeyException

I do get this error [2] from time to time when attempting to upsert (increment or insert) a document using method [1]. [1] public NGram save(final NGram ngram) { Criteria cr = ...
0
votes
2answers
59 views

MySQL behavior of ON DUPLICATE KEY UPDATE for multiple UNIQUE fields

From MySQL 4.1.0 onwards, it is possible to add ON DUPLICATE KEY UPDATE statement to specify behavior when values inserted (with INSERT or SET or VALUES) are already in destination table w.r.t. ...
0
votes
0answers
40 views

Upserting subdocument in for loop

Not sure why this isn't working, I've tried a few different variations of syntax, but no go. I'm also unsure if having an update inside a for loop is a good idea. Basically I'm updating a user's ...
0
votes
1answer
30 views

Insert or update a row in SQLite

I found this answer but I'm not sure it does what I want to. It looks like it updates ALL rows in the table, where I only want to update one. My table is very simple: MacAddress | Name ...
1
vote
1answer
56 views

Upserting column add to current value with simple.data

Trying to upsert with simple.data and i would like to add to current value if matched, and otherwise just use provided value. This fails if Id=13 does not exist. var table = db.TheTable2; ...
1
vote
1answer
85 views

Solution for INSERT or UPDATE and fetching newly created id on SQL server

Is it possible to perform an insert or update with the following constraints : Dapper is used in the project The Primary Key is auto-incrementing positive The newly inserted data may not have a PK ...
1
vote
3answers
331 views

How to insert/update data from one table into another table (postgresql)?

There are two tables tmp_stat: date, site_id, ip, block_id, count Primary Key (date, site_id, ip, block_id) main_stat: date, site_id, ip, block_id, count Primary Key (date, site_id, ip, block_id) ...
0
votes
1answer
64 views

MongoDB: upsert multiple fields based on multiple criteria

I am new to Mongo. I wanted to atomically upsert a document based on multiple criteria. The document looks like the following: {_id:..., hourOfTime:..., total:..., max:..., min:..., last:...} This ...
0
votes
0answers
55 views

Merge natural key in JPA

Given an entity with a natural key (no surrogate pk, using @IdClass), is the persistence provider supposed to prevent primary key violations when merging identical instances? I get primary key ...
2
votes
1answer
322 views

SQLite UPSERT / UPDATE OR INSERT

I need to perform UPSERT / INSERT OR UPDATE against a SQLite Database. There is the command INSERT OR REPLACE which in many cases can be useful. But if you want to keep your id's with autoincrement ...
0
votes
2answers
334 views

SQL standard UPSERT call

I'm looking for a standard SQL "UPSERT" statement. A one call for insert and update if exists. I'm looking for a working, efficient and cross platform call. I've seen MERGE, UPSERT, REPLACE, INSERT ...
0
votes
1answer
49 views

Upsert with $in

I want following functionality in MongoDB. I have a collection named 'entities', which basically stores entity text and it's count. The collection looks like this: [{u'_id': u'facebook', u'n': 120}, ...
1
vote
2answers
44 views

Upsert for LDAP directory in Java

I'm attempting to execute an Upsert using the Novell JLDAP library, unfortunately, I'm having trouble finding an example of this. Currently, I have to: public EObject put(EObject eObject){ Subject s ...
0
votes
1answer
39 views

How to exclude fields from being “upsert-ed” in Mongoose?

var UserData = function(){ var self = this; this.schema = Schema({ userID: String, firstName: String, lastName: String, ... //many other fields. ...
0
votes
0answers
55 views

kettle mongo _id

I'm trying to upsert by using the _id field in Mongo. I've tried to recover first the _id by using a Json Input step, no luck with $._id or $._id.$oid Anyone knows how to upsert by _id?
1
vote
1answer
50 views

Optional parameters in Merge

I have a stored procedure used for updating records in a SQL Server database. I want to use the existing value within the database if a match is found and a null is provided as the variable. Often ...
0
votes
2answers
89 views

Can SOLR perform an UPSERT?

I've been attempting to do the equivalent of an UPSERT (insert or update if already exists) in solr. I only know what does not work and the solr/lucene documentation I have read has not been helpful. ...
1
vote
1answer
235 views

Ambiguous column in PostgreSQL UPSERT (writeable CTE) using one table to update another

I have a table called users_import into which I am parsing and importing a CSV file. Using that table I want to UPDATE my users table if the user already exists, or INSERT if it does not already ...
0
votes
1answer
55 views

MySQL upsert with extra check

I'd like to perform a little bit complicated upsert operation using INSERT ... ON DUPLICATE KEY UPDATE. But I couldn't get it to work. This is what I'd like to do: Try inserting a record. If the ...
0
votes
1answer
117 views

How to set update timestamp in upsert operation in Mongoose?

I want to set the update timestamp only for updating the record (and insert timestamp for new record) in the upsert operation. self.model.update({Id: obj.Id}, obj, {upsert: true}, function(err){ ...
0
votes
1answer
435 views

T-SQL UPSERT table with multiple values from TVP

I use SQL Server 2012, and T-SQL as query language. I need help updating/inserting multiple columns in [cross_function_user] using one ID value passed as a parameter (@userGroupID) and lots of ...
0
votes
0answers
86 views

Safely perform a mongodb upsert and update the same document afterwards if it's new (node.js)

We have a lot of incoming reports that describe different actions associated with a user. We add one document per user for a given time period ("sessions"), and all actions received during that ...
0
votes
0answers
21 views

Doing an upsert in mongo, can I specify a custom query for the “insert” case? [duplicate]

Possible Duplicate: Mongodb upsert only update selected fields, but insert all Say I have this: db.Person.update({ name: "Ignacio" }, { $inc: { age: 1 } }, { upsert: true }); It will ...
-1
votes
1answer
98 views

UpdateFlags.Upsert and UpdateFlags.Multi together in Update() [duplicate]

Possible Duplicate: How to update and upsert mulitple documents in MongoDB using C# Drivers This may be a silly question. Actually I am confused with the syntax. An update from shell has ...
1
vote
2answers
160 views

using combined update and insert with hypersql

I was implementing upsert according to this great post: Insert, on duplicate update (postgresql) and this works really fine with psql. However, I can't fire the same query into hsqldb which i use for ...
1
vote
2answers
388 views

Mongodb upsert only update selected fields, but insert all

I am trying to use upsert in MongoDB to update a single field in a document if found OR insert a whole new document with lots of fields. The problem is that it appears to me that MongoDB either ...
1
vote
2answers
122 views

MongoDB How to upsert objects with _id in given Array

My command like this: db.item.remove() db.item.update({_id:{$in:['A1','A2']}},{$inc:{count:1}},{multi: true, upsert: true}) my desired result should be db.item.find() --> {_id: 'A1', ...
0
votes
1answer
148 views

UPSERT statement in Postgres on a partitioned table

I have a partitioned table and an update function/trigger. when a row is updated, it first deletes the row and then inserts it into the proper partition. My question is that I am trying to do a ...
1
vote
1answer
86 views

Get upsert result code or confirmation from MongoDB C#

I would like to find out if MongoDB has performed an insert, or updated the record. How do I find that out through the C# driver? Thank you very much!
1
vote
1answer
197 views

simplifying update/insert (upsert) processing in MySQL

A common operation is to insert a new row if none exists, or update an existing row. Unfortunately, the syntax for insert and update SQL statements is completely different: Insert takes a list of ...
0
votes
1answer
343 views

Node.js MongoDB Upsert update

im writing a little application which scores keywords. So if "beiruit" and "education" get entered in, if they havent been seen before, i want to create a mongo entry, and give them a score of 1. if ...
2
votes
1answer
1k views

AddOrUpdate works not as expected and produces duplicates

I'm using Code-First DBContext-based EF5 setup. In DbMigrationsConfiguration.Seed I'm trying to fill DB with default dummy data. To accomplish this task, I use DbSet.AddOrUpdate method. The simplest ...
0
votes
1answer
59 views

Using SQL Server Merge from a string instead of a table

How can I create an Upsert functionality for a table with a composite key when sending the query via php? I have an order_items table whose key is both an order number and an item number. I then ...
1
vote
1answer
168 views

How to resolve SQL0418N Error

I'm using the statement below to update/insert some data to a table and, if I run it without parameters, it's fine. However, as soon as I try to execute it using parameters it throws: SQL0418N - A ...
2
votes
1answer
184 views

Replace looping with a single query for INSERT / UPDATE

I am writing a function in PostgreSQL. It does basically 3 steps: Fetch a record from source table. check the value from the fetched record in target table, if record is found in target table then ...
3
votes
1answer
338 views

Meteor upsert equivalent

How soon will the upsert command be implemented in Meteor? And, what is the best way to do the same thing in the mean time? Something like this is what I'm doing at the moment: if typeof ( item = ...
0
votes
1answer
95 views

Syntax errors when creating triggers

I know this question has been thrown here in various forms, but I have gone through them all and not able to get solution to my issue. I don't understand why I keep getting this language error on this ...
0
votes
1answer
139 views

Composite _ID and using MongoDB as a composite bucket store, via C#

I am building an eCommerce system that uses composite bucket hashing to efficiently group similar items. Without going into why I chose this system, suffice it to say it solves several key problems ...
1
vote
1answer
62 views

What would cause an upsert to fail (Not insert any rows)?

I have an INSERT INTO ... ON DUPLICATE KEY UPDATE query that for some reason is being ignored by the mysql server, at least as far as I can tell. It's catching on an update of an existing row. I ...
0
votes
0answers
214 views

How do I bulk upsert with SQLAlchemy?

I'm benchmarking a new python upsert library against SQLAlchemy. Here's the loop that I'm using for SQLAlchemy; I want to make sure it's as fast as possible so I'm not shortchanging the famous ...
1
vote
2answers
272 views

CodeIgniter: My upsert function not working with my_model / my_controller

Working with the my_model & my_controller for the first time this month within CodeIgniter, I think I almost have this working. I got an insert function working properly, now I'm trying to add an ...
1
vote
2answers
186 views

how to check if an document is updated or inserted in MongoDB

I'm just wondering if there's way to check if a given document is updated or inserted in MongoDB after a upsert operation in Java: DBCollection col = getCollection(); // either this ...
3
votes
1answer
247 views

How to tell if record has changed in Postgres

I have a bit of an "upsert" type of question... but, I want to throw it out there because it's a little bit different than any that I've read on stackoverflow. Basic problem. I'm working on ...
1
vote
1answer
545 views

When will a mongodb document expire after it is updated?

I have a collections of documents in mongodb, with the expireAfterSeconds property set on a date-type index. For the sake of argument, the documents are set to expire after one hour. When I update a ...

1 2 3 4