Tagged Questions
The cascade tag has no wiki summary.
31
votes
9answers
8k views
When/Why to use Cascading in SQL Server?
When setting up foreign keys in SQL Server, under what circumstances should you have it cascade on delete or update, and what is the reasoning behind it?
This probably applies to other databases as ...
12
votes
4answers
3k views
NHibernate Definitive Cascade application guide
Are there any internet resources that have a definitive guide to all of the cascade settings for NHibernate that will include examples of the class structure, HBM and the implications of actions with ...
11
votes
4answers
304 views
How to explain the “Cascade” to CSS newbies?
I have trouble explaining to people who are new to CSS how the cascade works when using stylesheets. For whatever reason, newbies seem to naturally start out by just adding a class to every element. ...
10
votes
1answer
1k views
Nhibernate Cascade
What does Cascade in Nhibernate mean?
I see a lot of options in cascading:
Delete
All
AllDeleteOrphan
DeleteOrphan
SaveUpdate
Can you explain these with with examples and their distinctions?
8
votes
1answer
479 views
How do I change a child's parent in NHibernate when cascade is delete-all-orphan?
I have two entities in a bi-directional one-to-many relationship:
public class Storage
{
public IList<Box> Boxes { get; set; }
}
public class Box
{
public Storage CurrentStorage { get; ...
8
votes
9answers
20k views
In SQL Server 2005, can I do a cascade delete without setting the property on my tables?
I have a database full of customer data. It's so big that it's really cumbersome to operate on, and I'd rather just slim it down to 10% of the customers, which is plenty for development. I have an ...
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) ?
7
votes
4answers
6k views
Should I use the CASCADE DELETE rule? [closed]
I've always been too scared to use DELETE CASCADE, but as I get more confident (lazy :D), I'm thinking how bad can it be, is it best practise to use it or should I avoid it and clean up my foreign ...
7
votes
3answers
746 views
Does CASCADE Delete execute as transaction?
I want to perform cascade delete for some tables in my database, but I'm interested in what happens in case there's a failure when deleting something. Will everything rollback?
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 ...
6
votes
1answer
11k views
How do I use on delete cascade in mysql?
I have a database of components. Each component is of a specific type. That means there is a many-to-one relationship between a component and a type. When I delete a type, I would like to delete all ...
6
votes
3answers
15k views
Hibernate Delete Cascade [closed]
I Have one entity [Project] that contains a collection of other entities [Questions].
I have mapped the relation with a cascade attribute of "all-delete-orphan".
In my DB the relation is mapped with ...
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
3k views
T-SQL: DROP Table cascade constraints equivalent?
In oracle, I can issue a DROP TABLE ... cascade constraints and it won't complain about FKs, etc.
Is there an equivalent in T-SQL?
5
votes
5answers
1k views
What is the problem with foreign key cascade multiple paths and cycles?
In MSSQL 2005 I just struck the infamous error message:
Introducing FOREIGN KEY constraint XXX on table YYY may cause cycles or multiple cascade paths. Specify ON DELETE NO ACTION or ON UPDATE NO ...
5
votes
3answers
3k views
Hibernate: Clean collection's 2nd level cache while cascade delete items
I have a problem Hibernate does not update 2nd level cache for a collection of items which are subject of cascade removal.
Details
Assume we have an object Parent which has Parent.myChildren ...
4
votes
2answers
85 views
How do I cascade delete a collection in Hibernate?
Let's say I have two entities, a Post and a Comment (in ColdFusion):
component persistent="true" table="post"
{
property name="Id" fieldtype="id";
property name="Comments" ...
4
votes
1answer
468 views
Cascading collections using NHibernate StatelessSession
What is the proper way to bulk insert entities which contain collections of other entities (a HasMany mapping), using stateless sessions?
E.g. Parent class is mapped like this:
class ParentMap : ...
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
2answers
1k views
Hibernate annotations cascading doesn't work
I've decided to change hbm.xml style to annotations using hibernate.
I had in my hbm.xml:
<hibernate-mapping package="by.sokol.jpr.data">
<class name="Licence">
<id ...
4
votes
1answer
1k views
Is SQL Server DRI (ON DELETE CASCADE) slow?
I've been analyzing a recurring "bug report" (perf issue) in one of our systems related to a particularly slow delete operation. Long story short: It seems that the CASCADE DELETE keys were largely ...
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.
...
4
votes
1answer
998 views
NHibernate: How to automatically delete many-to-many associations (cascade)
In my database I've got Users and UserGroups which have a many-to-many relation. The User has a set of UserGroup, the UserGroup domain object does not see the User.
<class name="User" ...
4
votes
2answers
5k views
Delete throws “deleted object would be re-saved by cascade”
I have following model:
<class name="Person" table="Person" optimistic-lock="version">
<id name="Id" type="Int32" unsaved-value="0">
<generator class="native" />
</id>
...
4
votes
1answer
3k views
JPA cascade options at runtime
I'm trying to make an application that keeps an object model in sync with a database by observing all changes and then immediately persisting the objects in questions. Many of the object in the model ...
4
votes
1answer
14k views
Hibernate: How to make Hibernate delete records from child table when deleting parent if child is linked to parent with many-to-one?
Lets say I have two tables - "child" and "parent" with many-to-one relation. What I need is to delete child entries if parent record is deleted.
It is not a problem if I link child table from parent ...
3
votes
1answer
71 views
CSS specificity / priority based on order in style sheet?
I had a brief look at the CSS3 Selectors spec but couldn't find anything how to get round this problem. Additionally, I wasn't expecting the result from this to change when you move the CSS ...
3
votes
1answer
300 views
Entity Framework Code first - FOREIGN KEY constraint problem
I'm new to EF code first principal and currently with no clue what to do.. I have 2 POCO classes..
public class Problem
{
public int ProblemID { get; set; }
public int UserID { get; set; }
...
3
votes
1answer
321 views
Different levels of CSS and the priority over each other
I was reading a decent article here on this topic: http://www.plus2net.com/html_tutorial/css-types.php
It came out highest ranked by Google for the search term css style sheets priorities.
However I ...
3
votes
3answers
3k views
JPA Hibernate many-to-many cascade problem
I am using JPA 2.0 and hibernate. I have a User class and a Group class as follows:
public class User implements Serializable
{
@Id
@GenericGenerator(name = "userGUIDGenerator", strategy = ...
3
votes
3answers
3k views
SQL Server: drop table cascade equivalent?
In oracle, to drop all tables and constraints you would type something like
DROP TABLE myTable CASCADE CONSTRAINTS PURGE;
and this would completely delete the tables and their dependencies. What's ...
3
votes
3answers
253 views
Deleting from table with @OneToOne annotation
I'm using JPA2 and Hibernate implementation.
I've got simple mapping like this :
@Entity
class Topic {
@Id
@GeneratedValue(strategy = IDENTITY)
int id;
@OneToOne(cascade = ALL)
...
3
votes
2answers
1k views
Confusion between JPA and Hibernate cascading
I'm using Hibernate 3.6 and have my code annotated (versus using hibernate mapping files). I ran into the known "problem" of using JPA cascading options that are not compatible with Hibernate's ...
3
votes
1answer
219 views
Many to Many delete in NHibernate two parents with common association
I have 3 top level entities in my app: Circuit, Issue, Document
Circuits can contain Documents and Issues can contain Documents.
When I delete a Circuit, I want it to delete the documents associated ...
3
votes
1answer
195 views
Injected link stylesheet takes precedence over existing styles in IE7+
There seems to be a bug in IE when cascading dynamic stylesheets. Does anyone know if there is a workaround? Consider this:
<head>
<style>#test{background:red;}</style>
...
3
votes
1answer
285 views
What is the performance impact of CSS's universal selector?
I'm trying to find some simple client-side performance tweaks in a page that receives millions of monthly pageviews. One concern that I have is the use of the CSS universal selector (*).
As an ...
3
votes
1answer
503 views
Hibernate doesn't generate cascade
I have a set hibernate.hbm2ddl.auto to create so that Hibernate creates the tables in mysql for me.
However, it doesn't seem that hibernate correctly adds Cascade on the references in the table. It ...
3
votes
5answers
221 views
Is it bad to rely on foreign key cascading?
The lead developer on a project I'm involved in says it's bad practice to rely on cascades to delete related rows.
I don't see how this is bad, but I would like to know your thoughts on if/why it is.
...
3
votes
2answers
5k views
how to define an inverse cascade delete on a many-to-one mapping in hibernate
I have two classes A and B. Many B's can have association with a single A, hence a many-to-one relationship from B to A. I've mapped the relationship like:
<class name="A" table="tbl_A">
...
3
votes
6answers
908 views
Delete rows from two tables in one query
I have two tables: orders and orders_items. Both sharing the field orderID.
I want to delete all rows from both tables where orderID=500, but I need to do this in only one query. Is this possible?
3
votes
2answers
4k views
NHibernate, one-to-one mapping, cascade insert
I have a one-to-one relationship between a Company class and a CompanySettings class. When I create a new Company object, (a CompanySettings object is created in Company's constructor for its Settings ...
3
votes
4answers
6k views
How do the Postgres foreign key 'on update' and 'on delete' options work?
Can anyone provide a clear explanation / example of what these functions do, and when it's appropriate to use them?
2
votes
3answers
83 views
NHibernate - saving huge detached object
I'm having a two-tier (non-web) system, where I will load some objects into system memory, and flush them back to database occasionally. Let's assume there's just one object I need to update, but the ...
2
votes
1answer
88 views
Error in Cascade : deleted object would be re-saved by cascade
I have a project by NHibernate implementation and using Lazy Loading.
I have two class in this project : Person and Family.
Relation between Those two is aggregation, is mean a Person has a list of ...
2
votes
1answer
175 views
Doctrine Cascade Options for OneToMany
I'm having a hard time making sense of the Doctrine manual's explanation of cascade operations and need someone to help me understand the options in terms of a simple ManyToOne relationship.
In my ...
2
votes
0answers
48 views
Rails: On-the-fly Destroy cascade?
I know that destroy cascade will work if proper relationships are setup in the models, but I want to know whether there is a way to destroy cascade on-the-fly, without needing to have everything ...
2
votes
1answer
79 views
MySQL/InnoDB with FK constraints: find tables/rows affected by cascaded delete
I have a MySQL/InnoDB database set up with FK constraints. If I delete a row in a 'root' table, the dependent tables will have corresponding rows deleted.
How can I show what has been deleted, or at ...
2
votes
3answers
277 views
Hibernate annotation Cascade problem
I have a Java class that contains a list of another class.
@Entity public class Country {
private Long id;
private List<Hotel> hotels;
public void setId(Long id) {
this.id = id;
}
@Id
...
2
votes
1answer
2k views
Cascade Delete Rule in EF 4.1 Code First when using Shared Primary Key Association
I implemented a bidirectional 1:1 relationship based on this answer:
Primary /Foreign Key in Entity Framework
I define the bidirectional relation this way:
public class Student
{
public ...
2
votes
2answers
480 views
How to add cascade delete in oracle when the foreign key is on the same table
I have a table that contains a tree in oracle.
MY_TABLE
node_id
parent_id
How do I add a cascade delete when the root of the tree is not going to have a parent?
Right now the parent id is set to ...