Tagged Questions
The cascading-deletes tag has no wiki summary.
11
votes
2answers
197 views
Simulate a DELETE CASCADE in MySQL?
Is it possible to predict the operations that follow a DELETE CASCADE automatically? In my software I would like to give the user a warning with details about the data that would be deleted then.
10
votes
6answers
4k views
Core Data Relationships cause save error after delete
This question is probably a long shot. I can't figure out the errors I'm getting on my core data project when I save after I delete an entity. My .xcdatamodel can be seen at:
http://jump.fm/BXRCG
...
8
votes
3answers
2k views
What are the options for overriding Django's cascading delete behaviour?
Django models generally handle the ON DELETE CASCADE behaviour quite adequately (in a way that works on databases that don't support it natively.)
However, I'm struggling to discover what is the best ...
7
votes
1answer
2k views
What is the difference between REMOVE and DELETE?
Is there a difference between :
@Cascade(org.hibernate.annotations.CascadeType.REMOVE) and
@Cascade(org.hibernate.annotations.CascadeType.DELETE) ?
6
votes
1answer
111 views
Code first causing required relation to be optional?
public class Client
{
public Int32 ClientID { get; set; }
public virtual ICollection<Inquiry> InquiryManufacturers { get; set; }
public virtual ICollection<Product> Products { ...
6
votes
2answers
844 views
nhibernate “cascade=”all-delete-orphan" error
i have 3 tables in my database:
Projects (id, name)
Tags (id, name)
ProjectsTagss (id, projectId, tagid)
As you can see the ProjectsTags table is a bridge table
here is my fluent nhibernate ...
6
votes
6answers
599 views
NHibernate - How to find if a referenced object can be deleted?
I have an object called "Customer" which will be used in the other tables as foreign keys.
The problem is that I want to know if a "Customer" can be deleted (ie, it is not being referenced in any ...
5
votes
2answers
1k views
On delete cascade with doctrine2
I'm trying to make a simple example in order to learn how to delete a row from a parent table and automatically delete the matching rows in the child table using Doctrine2.
Here are the two entities ...
5
votes
3answers
4k views
JPA 2.0 orphanRemoval=true VS on delete Cascade
I am a little confused about the JPA 2.0 orphanRemoval attribute.
I think I can see its is needed when I use my JPA provider's DB generation tools to create the underlying database DDL to have an ON ...
5
votes
1answer
2k views
iPhone Core Data: Cascading delete across a many-to-one relationship
I have two classes A and B with a many-to-one relationship from A to B (multiple A objects may reference the same B). The question is, if the delete rule on the A side is Cascade, will B be deleted ...
5
votes
2answers
3k views
Grails - multiple belongsTo of same class with cascading deletion
This one is for the Grails users here. I asked it on the grails - user mailing list, but I figured since I've been fighting this for a couple of days I should cast as wide a net as possible.
I'm ...
4
votes
2answers
39 views
Is there any real advantage to managing cascading deletes in code rather than the DB?
I'm going to set up this question with some pre-conditions that may make the question irrelevant, but here goes.
Assuming my database has a way to do cascading deletes and I'm not trying to code for ...
4
votes
3answers
396 views
C# - Predict file system events on folder delete
This is more a question about what's the best practice in implementing this.
I have a FileSystemWatcher which should inform me about User's changes on files and folders. Also subdirs are watched. In ...
4
votes
4answers
302 views
What are the Pros and Cons of Cascading delete and updates?
Maybe this is sort of a naive question...but I think that we should always have cascading deletes and updates. But I wanted to know are there problems with it and when should we should not do it? I ...
4
votes
1answer
3k views
How do I delete a child entity from a parent collection with Entity Framework 4?
I'm using Entity Framework 4 and have a one-to-many relationship between a parent and child entity. I'm trying to delete a child using the parent repository by removing it from the parent's children ...
4
votes
2answers
2k views
nhibernate does not cascade delete children
The scenario is as follows,
I have 3 objects (i simplified the names) named Parent, parent's child & child's child
parent's child is a set in parent, and child's child is a set in child.
...
3
votes
1answer
227 views
Problems with cascading deletion in Hibernate
This question has been asked numerous times before, yet I haven't seen a satisfactory answer since, thus I am asking it again.
Imagine the following situation:
public class User {
...
...
3
votes
2answers
296 views
Should I let JPA or the database cascade deletions?
Let's say we have two entities, A and B. B has a many-to-one relationship to A like follows:
@Entity
public class A {
@OneToMany(mappedBy="a_id")
private List<B> children;
}
@Entity
public ...
3
votes
1answer
1k views
Cascading deletes with Entity Framework - Related entities deleted by EF
I have an issue with deletion in Entity Framework. In short, EF explicitly tries to delete an entity from the database even though I've explcitly configured EF to use cascading deletes in the ...
3
votes
1answer
1k views
EF 4.1 RC: Weird Cascade Delete
I have to admit, the features of EF 4.1 RC Codefirst, DataAnnotations and FluentAPI are still overwhelming to me. Sometimes I really don't know what I am doing ;-) Please see the following POCOs:
...
3
votes
2answers
264 views
NHibernate cascade delete
Let me begin with showing the mapping:
Parent:
<bag name="Communicatiekanalen" table="COMMUNICATIEKANAAL" inverse="true" cascade="delete" lazy="true" >
<key ...
3
votes
1answer
703 views
SQL Server 2008 - Multiple Cascading FK's - Do i need a trigger?
I have a 1..* relationship between User and Post. (one user has many posts)
Post has a FK called "UserId", which maps to the "UserId" field on User table.
I tried to set this FK as Cascade ...
3
votes
3answers
595 views
Entity Framework: Set Delete Rule with CodeFirst
I am using EF4 CTP 5, CodeFirst.
Please see my classes first:
public class Guest
{
[Key]
public Guid GuestID { get; set; }
public Language PreferredLanguage { get; set; }
...
3
votes
1answer
131 views
How to guard data structure consistency when calling external logic via observers?
I am currently refactoring an application in which classes can call observers if their state changes. This means that observers are called whenever:
the data in an instance the class changes
new ...
3
votes
2answers
143 views
nhibernate many to many deletes
I have 2 classes that have a many to many relationship.
What i'd like to happen is that whenever i delete one side ONLY the association records will be deleted with no concern which side i delete.
...
3
votes
5answers
688 views
How can I delete from three tables with foreign keys?
I want to be able to choose a groupID and do a cascading delete through three tables which are found in a MS SQL server database. The tables look like the following:
table 1 - GROUP
...
2
votes
1answer
42 views
Deleting linked data across tables in PostgreSQL
I'm looking for the best way to handle deleting linked data across three PostgreSQL tables (technically more, but it's the same idea).
The three tables are agency, address, and agency_address. An ...
2
votes
1answer
96 views
How to use DELETE ON CASCADE on many-to-one relation
May someone help me out. I'm trying something, but I'm (too) new to (my)SQL.
I use two tables: Items and Categories. Table Items has a field with foreign key: categorie_id.
I want the table ...
2
votes
1answer
109 views
Why won't my GenericForeignKey cascade when deleting?
I'm creating a custom commenting system which can attache comments to any model using the contenttypes GenericForeignKey.
class Comment(models.Model):
body = ...
2
votes
1answer
408 views
INSTEAD OF DELETE Trigger conflict with ON DELETE CASCADE FK
Batches can have multiple Bills which can have multiple BillLines. I have on DELETE CASCADE FKs between them so that if you delete a Batch, the associated Bill and BillLine records also get deleted. ...
2
votes
1answer
2k views
Entity Framework 4.1 InverseProperty Attribute and ForeignKey
I will create two references between Employee and Team entities with foreign keys.
So I defined two entities as follow
public class Employee
{
public int EmployeeId { get; set; }
public ...
2
votes
4answers
821 views
SQL 'DELETE CASCADE'
I have a table B that has a foreign key to table A, and now I want to do a sorta "DELETE CASCADE" thingie on A, but PostgreSQL won't accept the following:
DELETE FROM ATable WHERE aid IN
(
DELETE ...
2
votes
1answer
433 views
Grails belongsTo cascade on delete when belongsTo specifies multiple classes?
class Owner {
static hasMany = Dog
}
class Sitter {
static hasMany = Dog
}
class Dog {
static belongsTo = [Owner, Sitter]
}
My question is: If I create a Dog instance D, a Owner instance ...
2
votes
1answer
627 views
Enable cascading deletes in EF Code First without exposing foreign key
When performing a delete of a one-many relationship without exposing the foreign key, EF deletes the parent record and tries to null the foreign key on the child records. This of course causes an ...
2
votes
2answers
758 views
Bidirectional one to many (or many to one) cascade delete behaviour. It works, but why?
I have two Nhibernate mappings for two classes, Category and Product. My Category class has two properties that are collections. The Children property is a collection of type Category which ...
2
votes
1answer
587 views
How to use delete cascade on MySQL MyISAM storage engine?
I have one table that I had called equipment, and 8 other tables that I had called equipment_child1 and so on until equipment_child8.
The commom field between all that tables is cod_equip, with this ...
2
votes
1answer
145 views
Rails: Delete User without losing associations (or other methods of letting Users leave)
I have a Rails application that lets Users create various "judgements", everything is a bit interweaved, we have several classes that are connected to the User class.
When I let users "destroy" their ...
2
votes
1answer
520 views
Using EF4 CTP5 code first with no cascade delete
I'm using code first and turned off the cascade delete for all foreigns keys using the following statement:
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
...
2
votes
1answer
594 views
SQL Server Foreign Key “On Delete Set Null ” constraint not working
I am using sql server express 2008 with mmse.
i have set up a foreign key constraint between to tables and set the on delete constraint to "set null".
however it does no seem to enforce the ...
2
votes
1answer
356 views
Does Grails cascade deletes when not using domain.delete()?
From the Grails site: http://www.grails.org/doc/1.0.x/guide/5.%20Object%20Relational%20Mapping%20(GORM).html
class Airport {
String name
static hasMany = [flights:Flight]
}
class Flight {
String ...
2
votes
1answer
333 views
Hibernate cascade vs manual delete
I am using Hibernate and a few times had to implement cascading DELETE operation from parent object to its children. I used the following two options.
One option is to expose getChildren() on the ...
2
votes
1answer
352 views
Hibernate all-delete-orphan on a child class with two parent classes
I'm looking into a problem, where there are two "parent" classes, P and Q that cascade all-delete-orphan to a "child" class, C. My intuition in Hibernate tells this is really a bad idea and I am ...
2
votes
1answer
196 views
sql cascading deletes
I have a question about cascading deletes and foreign key references:
Let's assume the following tables:
ITEMX | ITEMY
------------------ | ------------
ID FKID_ITEMY | ID
...
2
votes
1answer
367 views
Tree deletion with NHibernate
I'm struggling with a little problem and starting to arrive at the conclusion it's simply not possible.
I have a Table called Group. As with most of these systems Group has a ParentGroup and a ...
2
votes
1answer
459 views
cascade delete multiple levels with nhibernate?
I have a hierarchy of tables 3 levels deep (QualificaionType has many QualificationGroups, which have many Qualifications) mapped like this:
// QualificationType
HasMany(x => ...
2
votes
2answers
2k views
How to cascade delete over many to many table
I have a 3 tables that look like this:
On the foreign keys I have set cascade deletes.
Right now, when I delete a record in the Folder table, only the related record in the FolderItem is deleted.
...
1
vote
1answer
21 views
ASP.NET SQL with linq-to-entites turn off cascade delete
I have an asp.net web application in visual studio 2010. I am connected to an sql server using linq-to-entites objects and need to find out how to turn off cascading-deletes when i delete an object ...
1
vote
2answers
39 views
Problems understanding FOREIGN KEY / CASCADE constraints
I need some help at understanding how foreign keys and cascades work. I understood the theory but I'm having troubles to apply these to a real world example.
So let's assume I've got one table tags ...
1
vote
2answers
54 views
How to delete all related nodes in a directed graph using networkx?
I'm not sure exactly sure what the correct terminology is for my question so I'll just explain what I want to do. I have a directed graph and after I delete a node I want all independently related ...
1
vote
1answer
77 views
Hibernate @OnDelete cascade same table
I am trying to create a table which captures parent child relationships, like a tree. I would like to maintain only two columns to capture this structure "id" and "parent". I want the database to be ...