0
votes
1answer
20 views
SQL Server: Self-reference FK, trigger instead of ON DELETE CASCADE
Hello,
I need to perform an ON DELETE CASCADE on my table named CATEGORY, which has the following columls
CAT_ID (BIGINT)
NAME (VARCHAR)
PARENT_CAT_ID (BIGINT)
PARENT_CAT_ID is a …
0
votes
3answers
48 views
Print cascading table
Hi! I'm trying to load data from database and display it in table like here:
http://img196.imageshack.us/img196/1857/cijene.jpg
In database i have 2 tables:
cities (id, name)
price …
0
votes
7answers
60 views
Oracle cyclic foreign key references issues.
I've been racking my brain trying to come up with a solution to this.
For a database class, I need to implement the following:
Table HUSBANDS: (Name Varchar2(10)) (Wife Varchar2( …
0
votes
2answers
48 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" tabl …
0
votes
0answers
28 views
NHibernate collection cascade changes auditing
Given the following object model
class Test
{
...
public string Name {get;set;}
public IList<Test2> Collection {get;set;} //mapped with cascade="all"
}
class Test2
…
3
votes
4answers
100 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 AC …
1
vote
2answers
118 views
Nhibernate save update delete relations
Hi,
I have a product that has 1 or more product relations.
Entities: Product and ProductRelation
So product has a property List(Of ProductRelation)
Now I have a checkboxlist wh …
0
votes
1answer
75 views
MySQL InnoDB CASCADE?
Hi, I am starting to experiment with using InnoDB in web applications. I've setup some tables with a foreign key, but they are not behaving as expected.
Here are my table CREATE …
0
votes
1answer
130 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 …
0
votes
3answers
26 views
DB down on executing delete query
Hi All,
Is there a possibility that a simple delete query can bring down a DB?
We executed a delete query (single row deletion) and that query hung. When multiple people tried ex …
0
votes
0answers
26 views
Parent save doesn’t cascade to children of same abstract in FNH
I am using AutoMapping in FNH 1.0 (with Tom Cabanski's modified #arch from 9/2009) to persist a parent-child relationship.
The parent and child, Managers and Employees, are both …
0
votes
1answer
81 views
NHibernate: simple delete orphan scenario not working
I'm trying to have a simple one to many relationship/hierarchy using NHibernate. I would like orphans to be deleted automatically but my current attempts to do so all result in an …
2
votes
1answer
132 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) ?
1
vote
1answer
135 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 Paren …
0
votes
2answers
101 views
How can I make a cascade deletion in a one_to_many relatonship in Rails ActiveRecord?
I have a model in rails with one_to_many relationship. When I delete the father, I'd like to delete all childrens. How should I do it? I want to delete all orders and its items whe …
