Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
61 views

self.connection = oracledb.create_pool( protocol=self.protocol, host=self.host, port=self.port, service_name=self.service_name, ssl_server_cert_dn=self.ssl_server_cert_dn, user=...
Gracy Stephen's user avatar
2 votes
1 answer
267 views

With the code fragment below, I would like to update the status properties of multiple database records, for example bookings. Each record has the properties StatusCurrent and StatusBefore. I would ...
Armand's user avatar
  • 21
0 votes
0 answers
43 views

I have a requirement to update a single field of a whole collection in a MongoDB database. However this should update a different value for each document. e.g. document 1 'key' value should be ...
dab92's user avatar
  • 165
-1 votes
1 answer
125 views

Consider the following that is designed to contain up to 10000 rows : CREATE TABLE T( id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, weight MEDIUMINT NOT NULL, PRIMARY KEY(id) ); Every 6 ...
user25485418's user avatar
4 votes
1 answer
97 views

I'm trying to patch a single/multiple documents (identified by their id) with that I receive in a Dictionary<string, object>. The key of the dictionary is the path to the document property to ...
Stephan Steiner's user avatar
0 votes
1 answer
351 views

I'm facing a dilemma. I've created a model with an wave_order column with uniqueness db index with wavable. wavable is a polymorphic (but we don't care actually). # migration create_table :...
brcebn's user avatar
  • 1,772
0 votes
0 answers
107 views

I've a certain code that updates bulk rows: from simple_history.utils import bulk_update_with_history from django.utils.timezone import now bulk_update_list = [] for chart in updated_chart_records: ...
Azima's user avatar
  • 4,161
0 votes
0 answers
144 views

Currently working over a Oracle DB, and need to update a specific field from a table called "USERS" This table contain main information, as the user name, ID, EMAIL, etc. We are updating all ...
Yair Briones's user avatar
1 vote
2 answers
1k views

I want to delete all rows of a dataframe that match one or more rows in a filtering dataframe. Yes, I know about filter by one regex and I also know how join can be leveraged when there is a full ...
JL Peyret's user avatar
  • 12.2k
0 votes
1 answer
380 views

I am trying to do a bulk update where I copy the values of one tag to another but have not had any luck. Would appreciate any help that could be provided! Here is an example of what want to do. Old &...
Matt's user avatar
  • 23
0 votes
1 answer
302 views

I am new to Salesforce Apex developement, and am trying to update certain fields (e.g. Organization name, 'EIN' value, issue areas and target population) on the account object based on values brought ...
Daniel Zhou's user avatar
1 vote
1 answer
400 views

I'm using EFCore 7.0 and EFCoreBulkExtensions 7.1.2 When I'm trying to execute a _context.BulkUpdate(list, bulkConfig); It thows an <System.InvalidCastException>: Unable to cast object of type '...
Luis Santos's user avatar
0 votes
1 answer
274 views

I want to update and insert millions of data via stored procedure in oracle. I have used below approach- Fetching all the data in a list. Iterating through list and updating the data using commit ...
Tejal's user avatar
  • 11
-2 votes
1 answer
153 views

Is there any way to hide bulk actions from admin orders list except for processing status filtered list: post_status=wc-processing where I only want to show bulk actions? I tried to use code from How ...
David's user avatar
  • 7
-2 votes
1 answer
641 views

I am trying to bulk insert or update the data from a csv file to a pre-existing table in a database in SQL and I keep getting the error "Incorrect syntax near keyword 'BULK'" and I've tried ...
Morkaei's user avatar
1 vote
1 answer
237 views

I did some research on the subject but at the end I found that my approach was acceptable for updating about a list of 100 records x 10 fields. Is there a better way to do that? The arrays come from ...
Paul Godard's user avatar
  • 1,151
0 votes
0 answers
86 views

I am trying to update and insert multiple Google sheets with multiple rows, using the integration with Salesforce, for this, I need an endpoint (API) by which I can hit the Google Sheet API only once ...
Anurag Singh's user avatar
2 votes
0 answers
119 views

I'm new to Golang Please help with understanding I want to use bulk upsert operation via gocb.collection_bulk.go. How does it work if at the time of replacing the document, it will be blocked Is this ...
oliaaa_s's user avatar
1 vote
1 answer
960 views

I have about 1000 posts on my wordpress website, but these posts do not have featured images. But instead, in all these posts there is one photo (the first photo in the article) that can be used as an ...
Morteza Ahmadi's user avatar
0 votes
1 answer
30 views

I have collection MyCollection which basically consists of its _id and a string called comment. This collection should be bulk-updatable. That's done like this: for (const obj of inputObjects) { ...
cis's user avatar
  • 1,403
0 votes
0 answers
260 views

I would like to a bulk update in sequelize. Unfortunately it seems like sequelize does not support bulk updates I am using sequelize-typescript if that helps and using postgresql 14 My query in raw ...
PirateApp's user avatar
  • 6,362
0 votes
0 answers
176 views

I need to update multiple rows of a PLSQL table, something like this: StringBuilder stringBuilder = new StringBuilder( "UPDATE review_item SET LAST_MODIFIED_TIMESTAMP = systimestamp, &...
Mahima Vuppuluri's user avatar
1 vote
0 answers
438 views

I need to bulk update in Sequelize, but I would like to update the value only if it is higher than the previous value. Here's a simplified example table: const HighestRecord = db.define('highestrecord'...
Kelly's user avatar
  • 11
0 votes
0 answers
609 views

I'm on mongo v4.2. See the below mongo shell script which is an exact copy of the example from mongo bulkWrite related documentation db.pizzas.insertMany( [ { _id: 0, type: "pepperoni", ...
Harindaka's user avatar
  • 4,938
1 vote
1 answer
138 views

I am trying to model a real-time collaboration application with DDD. A particular feature with some Hotspot events is CAD visualization. Problem #1 Multiple participants join a 3D virtual environment ...
Shakil Ahamed's user avatar

1
2 3 4 5
7