Questions tagged [bulk-delete]
41 questions
0
votes
3 answers
How to bulk delete (say millions) of documents spread across millions of logical partitions in Cosmos db sql api?
MS Azure documentation does not talk anything about it. Formal bulk executor documentations talks only about insert and update options, not delete. There is a suggested java script server side program to create a stored procedure which sounds very…

Harsh Kishore
- 11
- 1
- 4
0
votes
2 answers
Bulk delete over API in angular 8
I want to send a list of deleted objects to the backend over Api, How should I do that?
public deleteOrders(orderr: Order): Observable {
return this.http.delete(url, order); >>> Error
error : Type 'Order' has no properties in…

Maryam Ghafarinia
- 417
- 1
- 5
- 21
0
votes
1 answer
How to create a bulk delete button with Javascript and AJAX
i'm developing a new web site and i want to find out a way to add a bulk delete option.
Inside the web site I have a table that show information about schedule tasks that a user create.
The table that handle this information have these columns...
|…

Nikos Kalantas
- 95
- 4
- 11
0
votes
0 answers
bulk delete fix number of mongo documents filtered on the basis of oldest
I have a setup where we are concerned about the size of the Mongo db going out of proportion.
capped collection is not an option for us as we are dynamically updating documents.
I am thinking of implementing it in such a way that if the count of the…

Adarsh Chauhan
- 63
- 8
0
votes
0 answers
Bulk delete with progress
I try to find some way to delete a lot of data from table using batch with progress of deleting.
To delete I use the following code:
select 'to set rowcount'
WHILE @@ROWCOUNT <> 0
BEGIN
DELETE TOP (1000) @table from @table
END
But it does not…

Serg046
- 1,043
- 1
- 13
- 42
0
votes
1 answer
JPA bulk delete with multi columns primary key
Given the following entity :
@Entity(name = "Object")
@Table(name = "OBJECT_TABLE")
public class ObjectEntity {
@EmbeddedId
private ObjectEntityPk id;
@Column(name = "SOME_ATTIBUTE")
private String someAttribute;
...…

Maxime André
- 3
- 4
0
votes
0 answers
MS CRM 2013 Bulk delete jobs giving "SQL timeout Expired" for each and every record submitted in job
We are creating bulk deleting job in MS CRM and it gets Succeeded state but each and every record in the list gets failed with error
"SQL Server timeout expired" with error code 0x80044151.
Even if the job contains one record it gets failed with…

Manish Pandey
- 175
- 2
- 13
0
votes
0 answers
Trouble in Delete Multiple Documents by one Query in Elasticsearch
I am trying to delete multiple documents from one types at a time,
this is my code.
var ids = new List { 1, 2, 3 };
var bulkResponse = Client.DeleteMany(ids.Select(x => new Demo { EmpId = x }));
while i am executing this…

Unknown_Coder
- 764
- 6
- 24
0
votes
1 answer
Regarding bulk delete API in arangodb
I'm looking for an API to perform a bulk delete in ArangoDB. How could i do it?
I have gone through the below link... but i felt it is too tedious.
https://docs.arangodb.com/HttpBatchRequest/index.html
Actually i'm looking for some thing simpler way…

mahi
- 59
- 3
0
votes
1 answer
Routine for Bulk deletion of users in toad
Can anyone help me with the routine for the bulk deletion of users based on any criteria in the toad database.
0
votes
2 answers
Delete multiple couchbase entities having common key pattern
I have a use case where I have to remove a subset of entities stored in couchbase, e.g. removing all entities with keys starting with "pii_".
I am using NodeJS SDK but there is only one remove method which takes one key at a time:…

ThinkFloyd
- 4,981
- 6
- 36
- 56