0
votes
2answers
50 views
How to maintain referential integrity with common great-parent table?
Lets say I have a table with "Groups of Questions"
GroupID | value
--------+------
42 | How often do you
9071 | Other question
...
And, for each group of questions I have "questions" and …
0
votes
6answers
100 views
Update: How to implement Foreign Key concept in MySQL when we do not have referential integrity features in MySQL ?
Hi,
My question is regarding referential integrity concept in MySQL Database. Due to some kind of restrictions from our DBA we are not allowed to use referential integrity features of MySQL and so …
1
vote
7answers
70 views
Handling Deleted data in applications
Assume that you are writing a simple app. The model is that a 'project' has a 'category'. The project's category can be edited by choosing from a drop down list that contains all possible categories.
…
0
votes
2answers
19 views
Related insert fails in transationscope
I am using TransactionScope to add a object's data to one database.
pseudo code:
using (TransactionScope trx = new TransactionScope())
{
SqlConnection con = DL.GetNewConn();
int …
0
votes
1answer
69 views
Merging identical tables but maintaining separate referential integrity
Consider a dimensional model with fact tables like (fk_dim1value, fk_dim2value, ..., value) where the fk_X columns are foreign keys into corresponding trivial dimension tables dim1value (id, value), …
2
votes
3answers
119 views
Can I use nHibernate with a legacy-database with no referential-integrity?
If I have a legacy database with no referential-integrity or keys and it uses stored procedures for all external access is there any point in using nHibernate to persist entities (object-graphs)?
…
0
votes
4answers
76 views
Is it possible to defer referential integrity checks until the end of a transaction in SQL Server?
I recently read in Fowler's PofEA that some database engines allow you to defer RI checks until the end of the transaction. Is this possible in SQL Server?
The problem comes with some scenarios …
1
vote
3answers
158 views
Enforce Referential Integrity on Materialized Path?
I'm trying to implement a tree like structure using a Materialized Path model described here: http://www.dbazine.com/oracle/or-articles/tropashko4.
Is it possible to enforce referential integrity on …
5
votes
1answer
168 views
ElevateDB relational model do’s and dont’s
My company uses ElevateDB in one of our products. However, our database is just a bunch of tables. Recently, as more features are designed and more modules are added, we have found out our data is no …
1
vote
5answers
79 views
Syncing referential integrity tables and enums
I ponder this question from time to time, so I thought I'd ask you guys about it.
Let's say I have a database table that looks like this:
Table: Visibility
Id Value
-- -----
0 Visible
1 …
0
votes
1answer
400 views
Zend Framework - Cascading Deleting Using Table Data Mapper pattern.
My problem getting Zend Framework to provide a DRI layer can now be summarized as such.
Using the class definitions below I am able to delete the user but not the related comment through my local …
1
vote
4answers
272 views
Help define referential integrity in Zend Framework 1.8.3 using Data Mapper model
I am unable to define referential integrity relationship using Zend Frameworks table relationships as documented in the manual.
I have exhausted every possible configuration (so it seems), and now am …
0
votes
4answers
223 views
unable to enforce referential integrity in Access
Hi,
I've checked everything for errors: primary key, uniqueness, and type. Access just doesnt seem to be able to link the 2 fields i have in my database. can someone please take a look?
…
7
votes
4answers
517 views
Why do Rails migrations define foreign keys in the application but not in the database?
If I define a Customer and Order model in which a Customer "has many" Orders and the Order "belongs to" the Customer, in Rails we talk about Order having a foreign key to the Customer through …
0
votes
1answer
147 views
db2 referential integrity problem
Situation is pretty serious, we have a table in DB2 on AS400 which has defined foreign key to another table, so we are entering record which have regular ID of referenced table so when we enter SQL …
