The cascading-deletes tag has no wiki summary.
0
votes
1answer
23 views
How to delete a foreign key when a row is deleted?
Given the following tables:
permissions[id IDENTITY];
companies[id IDENTITY, permission_id BIGINT NOT NULL, FOREIGN KEY(permission_id) REFERENCES permissions(id));
departments[id IDENTITY, ...
0
votes
0answers
15 views
Can I avoid cascade deletion when using GenericRelation API?
I'm using GenericRelation in some of my django models and find the provided API very useful. However I would like to avoid the cascade-deletion behavior on some of these. According to GenericRelation ...
1
vote
0answers
73 views
Entity framework one direction one to many cascade deleting
I have two entities:
public class Report : SimpleEntity
{
public virtual ICollection<BaseFrequency> Frequencies
{
get
{
return _requencies ?? (_requencies = ...
0
votes
1answer
78 views
Mysql 'Cascade On Delete' Not Deleting on Foreign Key Row When Parent Is Deleted
In a database, I have a username table and I have jurisdiction table. I also have a intermediate table to assign a user to one or more jurisdictions.
employee table
userID (primary Key)
firstName
...
1
vote
1answer
56 views
Cascade Delete Entity within entity
I have been working on a project and I'm trying to get the cascade delete to kick in. I have a model below I use for comments. These comments can have replies that come off of them that call the ...
0
votes
0answers
100 views
Hibernate 3.5 - cannot remove children rows
I have read pretty much every post on the Internets and stackoverflow about this and to no avail. I have a @OneToMany parent-children scenario. I have tried every Cascade/OnDelete/orphanRemoval ...
2
votes
1answer
84 views
How can I delete related child entities from DB when I set parent entity's value to null using Entity Framework and CodeFirst approach?
For Example I have Order and this order has Reserve field which has ICollection<ReserveItem>.
What I have now is:
Order class
public class Order
{
...
public Reserve Reserve {get; ...
1
vote
0answers
173 views
Play framework 2.0, delete in oneToOne cascade cause persistence exception
I am using Play 2.0 framework, I have three classes, Patient, Visit and Puberty. Patient and Visit have ManyToOne relationship, whereas Visit and Puberty have a one to one relationship (I know, it's ...
0
votes
1answer
91 views
NHibernate - SqlCE - Delete Cascade not working
I have two tables:
Receipt
ReceiptJournal
Receipt has 0...n ReceiptJournals
The mapping for this (in Receipt) looks like:
this.HasMany(x => ...
0
votes
2answers
73 views
How do I integrate embedded RavenDB and CascadeDelete bundle?
I'm trying to implement cascading deletes in this application which embeds RavenDB, via the CascadeDelete RavenDB bundle, but the bundle doesn't seem to be activated. How should I go about this?
In ...
0
votes
0answers
59 views
Hibernate bulk cascade delete
Looking at the APIs of ClassMetadata and its subclasses looks like Hibernate has all the required information to generate SQL statements to delete all the related entities in a bulk delete statement. ...
0
votes
1answer
139 views
JPA delete bidirectional entity
I am having some problems with JPA. I am new at this topic so my question maybe is really stupid, but i hope some of you could point me to the right direction.
I have Project and User entity. Every ...
1
vote
1answer
119 views
I get error with cascade deleting in an one-to-many relationship in EF Code First
I am using EF code first, and i generate my codes with EF 4.X DbContext Fluent Generator T4, so now i have have 2 poco Entities(I changed my lists to BindingList<T> to use binding in winForms):
...
2
votes
5answers
603 views
SQL: Delete from a table with many foreign keys
Currently I am working in a DB with a tree-like structure. Basically there is one top level table, and there are about 10 tables that have a foreign key on that table. Each of these tables has another ...
0
votes
2answers
43 views
One to many relation with cascade giving error
I am learning EF Code First with migrations, I have 3 entities :
[User] 1--->* [Call] 1--->* [ETA]
Code :
User.cs
public class User
{
[Key]
public int Id { get; set; }
public ...
1
vote
1answer
300 views
Oracle Delete Statement: how many rows have been deleted by cascade delete
I'm executing a statement like
DELETE FROM USER WHERE USER_ID=1;
In SQLDeveloper.
As the user is referenced in many tables (for example the user has an order, settings, ...) we activated ON DELETE ...
0
votes
1answer
46 views
What is the appropriate annotation for a cascading delete on a JoinTable?
I'm using Hibernate 4.1.0.Final, Spring 3.1.1.RELEASE, and MySQL 5.5. I have this entity ...
@GenericGenerator(name = "uuid-strategy", strategy = "uuid.hex")
@Entity
@Table(name = "user")
@Cacheable
...
0
votes
1answer
190 views
EF CodeFirst Mapping Two Cascade Delete Relationships
I have some issues getting cascading to work on my optional one-to-one and one-to-many relation. Enabling 1 of them works fine but enabling both results in a 'possible circular cascading exception'.
...
0
votes
0answers
76 views
Hibernate throws deleted object would be re-saved exception when deleting the owned side
I am using hibernate 4.1 and want to use cascaded updates and deletes. If I define a cascaded delete on the owning side, then i can delete the owner (which deletes the owned object), but i can no more ...
1
vote
0answers
67 views
Deleting in cascade with native query
I have a Ebean Entity model with 3 entities related with @OneToMany relationships like this:
public class A extends Model {
@Id
@GeneratedValue
public Long id;
public String name;
...
0
votes
1answer
276 views
How to avoid database deadlocks?
Some database features, such as SELECT ... FOR UPDATE and ON DELETE CASCADE, are implicitly vulnerable to deadlocks because the database does not specify what locking order will be used. I found two ...
1
vote
1answer
42 views
Cascading in ravendb not working
I have been trying to implement Cascading in my MVC application. Seems like everything is setup properly, but child docs are not being deleted. Does the metadata on the parent suppose to have a list ...
0
votes
1answer
52 views
Removing the entity from the non owning side
I am relatively new to Hibernate so I am still finding hard to understand a few concepts. And one of them is the owning.
I have a relationship between 2 objects.
Conversation
@OneToMany(mappedBy = ...
1
vote
1answer
118 views
Transaction is a good option to delete children records?
I have two tables, one table A that is the parent and other table B that is the children (1:N relationship).
If I want to delete the children records in the table B when I delete the parent in the ...
2
votes
2answers
395 views
ON DELETE CASCADE option not in generated when using ddl schema generation on Mysql
In a Maven-Spring-Hibernate-MySql running on Tomcat web app I'm using hibernate ddl to generate my DB schema with MySQL5InnoDBDialect.
The schema is generated just fine except the cascade option for ...
0
votes
1answer
228 views
Force Hibernate to delete joining table rows
I am a bit confused as I can't force Hibernate to remove the rows in the joining table. Probably I need to configure something differently.
I have a table Component and Task and a table the connects ...
0
votes
1answer
99 views
C#, Entity Framework and delete child registers in SQL Server 2008
I know that in SQL Server I can use delete on cascade when I delete a parent row in a table, but in some places I read that is better to implement this logic in the application (repository) instead of ...
10
votes
3answers
394 views
MySQL: Foreign key constraints that exceed max depth
I have MySQL Server 5.1.62 installed on production server. I am monitoring mysql server's error log file every day and suddenly I found below error in my error log file.
InnoDB: Cannot delete/update ...
0
votes
1answer
68 views
Deleting on cascade EntityManager
Here is the situation :
I have 2 entities Trader and client :
- one client is associated to one trader
- one trader could be associated to one or many clients
while deleting a trader using ...
2
votes
1answer
363 views
Many-to-Many Relations with 'code first' in Entity Framework 5 (EF5 - final release) wtih VS2012
I had invest now one day to find a solution wihtout success.
I like to create a simple Many to Many relation.
For that I've created two Models:
A Player class where i will have the 'Turnaments' ...
3
votes
2answers
552 views
SQLite Delete Cascade not working
In Android 4.2, using SQLite 3.7.11, when I delete a row from the Quizzes table, who's schema is below, the corresponding rows in the QuizQuestions table are not deleted.
I can't figure out what's ...
1
vote
1answer
294 views
Hibernate deletes record from many-to-many association table after updating
In my teamwork oriented app I have many-to-many relationship between User and Team, so hibernate creates association table. Problem is, that after updating the User which has Team, hibernate deletes ...
2
votes
1answer
126 views
Modeling an N-level tree in SQL Server with cascading deletes
I need to model an n-level tree in SQL Server. I originally did something like this to create a Node table:
[Id] [bigint] IDENTITY(1,1) NOT NULL,
[Name] [nvarchar](50) NOT NULL,
[ParentId] [bigint] ...
1
vote
1answer
206 views
How do I delete the master record automatically when all detail records are deleted in SQL Server 2008?
Say I have two tables. Errors and ErrorsDetails. So I have one Errors record that could contain many ErrorDetails records.
The users will periodically delete the detail records through an ...
2
votes
2answers
65 views
Figure out if a table has a DELETE on CASCADE
Can I know if a database have DELETE ON CASCADE with a query?
2
votes
1answer
246 views
Deleting rows from multiple related tables
There are three tables related one-to-one on the identifier. I need to delete all the records from the three tables that match the criteria A.ID = B.ID = C.ID
Now I do it in the following way:
...
0
votes
1answer
509 views
Entity Framework doesn't delete children, instead sets references to null
I have the following situation:
First the only relevant table/class (all auto generated from DB (MySQL)):
The relevant part of the edmx file:
<Association Name="navigationitem_ibfk_1">
...
1
vote
3answers
102 views
Is it possible to custom the delete on cascade of CakePHP?
I have a table with logs related to the Post ones and i dont want its data to be deleted when i delete a Post.
In the other hand, i want to delete all the comments of the Post as well as other data.
...
0
votes
0answers
152 views
Strategy for partial replication of a mySql database
I'm attempting to replicate a mySql database from a db, call it "my_copyfrom_db" to another db called "my_copyto_db". But it's only a partial replication.
The reason it's partial is that we only ...
1
vote
1answer
98 views
Undesirable delete in a many to many relationship in MySql
There is a similare question here but It didn't help
I have a classic many to many relationship between Organisme | Organisme_groupe | Groupe.
I want to keep Organisme when deleting Groupe and ...
0
votes
1answer
113 views
Core Data inverse relationship and deleting unused objects
I have a Core Data model similar to this:
When a Webgallery or Article object gets saved, it may use one or many pictures. They can use the same photographical subject but maybe in different sizes. ...
1
vote
1answer
105 views
How to prevent NHibernate to load child collection in one-to-many relationship when removing parent
I have Company->Users one-to-many relationship and I would like users to be cascade deleted, when company is deleted. The problem is that NHibernate (accourding to console output: I have configured ...
6
votes
4answers
234 views
Cascade deletion of embeddable objects' collection
I have an entity A that has a collection of basic types (e.g. String). I use such a mapping because the strings associated to each instance of A depend on A's lifecycle. If I want to remove an ...
2
votes
1answer
2k views
Hibernate cascade delete orphan
I have 2 entities: News and NewsComment
@Entity
@Table(name = "news", schema = "city")
public class News {
private Set<CommentNews> comments = new HashSet<CommentNews>();
...
0
votes
2answers
128 views
Delete the User Entity and all the data related to the Entity in Core Data
I have a Core data model like the User Entity having relationship with multiple entities. I need to delete all the entities that is related to User entity when i try to remove the user in core data.
...
1
vote
1answer
214 views
Django 1.4 Multiple Databases Foreignkey relationship (1146, “Table 'other.orders_iorder' doesn't exist”)
I have a Foreign Key from one model into another model in a differente database (I know I shouldn't do it but if I take care properly of Referential Integrity it shouldn't be a problem).
The thing is ...
2
votes
2answers
300 views
SQL DELETE (Cascading DELETE vs. TRIGGERS vs. “Manual”-DELETE)
I'm currently working with SQL Server Management Studio 2005 and I'm facing a bit of a problem, but first an extract (the important one) of my DB-schema:
imghack link to the image
I want to delete ...
0
votes
1answer
405 views
Replace T-SQL triggers with Entity Framework 4.0 code?
Entity Framework 4.0 project.
I am currently doing my cascading deletes using an INSTEAD OF DELETE trigger.
Is there a way to just do this in my Data Model code?
I thought about adding my Data ...
13
votes
4answers
661 views
How to enforce referential integrity on Single Table Inheritance?
I've read some of Bill Karwin's answers about single table inheritance and think this approach would be good for the setup I am considering:
Playlist
--------
id AUTO_INCREMENT
title
TeamPlaylist
...
0
votes
0answers
171 views
Entity Framework 1-To-1 with cascade delete enabled
I'm using EF 4.3.1 and want to create an attachment object and keep its binary data separately. So, I created two tables in the database: Attachments and AttachmentData. Here is a screenshot or their ...

