Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
5answers
4k 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 ...
15
votes
9answers
730 views

Audit Tables: Maintaining Referential Integrity - Good or Bad

We are planning on introducing simple Audit Trail in our database using triggers and separate history table for each table that requires auditing. For example consider table StudentScore, it has few ...
13
votes
6answers
543 views

How can I break referential integrity briefly, within a transaction, without disabling the foreign key constraint?

I have a table with 3 columns: ID, PARENT_ID, NAME PARENT_ID has a foreign key relationship with ID in the same table. This table is modeling a hierarchy. Sometimes the ID of a record will ...
13
votes
5answers
1k views

When is referential integrity not appropriate?

I understand the need to have referential integrity for limiting specific values on entry or possibly preventing them from removal upon a request of deletion. However, I am unclear as to a valid use ...
11
votes
5answers
9k views

How do I disable referential integrity in Postgres 8.2?

Google results on this one are a bit thin, but suggest that it is not easily possible. My specific problem is that I need to renumber the IDs in two tables that are related to each other such that ...
8
votes
2answers
1k views

Does CouchDB supports referential integrity?

I am new to CouchDB and learning about it. I did not come across CouchDB support for referential integrity. Can we create a foreign key for a field in the CouchDB document? For e.g. Is it possible ...
7
votes
9answers
754 views

Database per application VS One big database for all applications

I'm designing a few applications that will share 2 or 3 database tables and all of the other tables will be independent of each app. The shared databases contain mostly user information, and there ...
6
votes
5answers
299 views

Referential Data Integrity: Necessity, nice-to-have, or old hat?

Frameworks like Rails have encouraged moving a lot of the logic, even stuff like constraints and foreign keys, off the database - in my opinion. for the better, as it's more manageable and easy to ...
5
votes
4answers
1k 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
538 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 ...
4
votes
3answers
67 views

Are there any benefits to using MySQL for anything other than as a 'dumb' data-store?

The reason I ask is that we'd like to use a certain CHECK constraint which MySQL currently doesn't suport. Without this type of constraint in place, the whole reason for using foreign keys and ...
4
votes
1answer
89 views

MYSQL join tables multiple times

I have a table, with rows of events, and each one has (amongst lots of other fields) addedbyuser, editedbyuser, deletedbyuser There are INT, and refer back to the users table to a particular user. I ...
4
votes
1answer
185 views

Does SQLite coupled with NHibernate support referential integrity / foreign keys?

I have been reading a bit about NHibernate with SQLite, figuring it might be a very good option when I need lightweight database handling. I've read the following (and the links) which talk about how ...
4
votes
1answer
74 views

In MySQL, with FKs what's “CONSTRAINT” do?

I've looked at the MySQL 5.1 docs, and still can't figured this out -- that being I noticed a difference between the code I input into MySQL and output code by the system. What is the difference ...
4
votes
1answer
182 views

Database triggers / referential integrity and in-memory caching

Do you see database triggers / referential integrity rules being used in a way that changes actual data in the database (changing row w in table x causes a change in row y in table z)? If yes, How ...
4
votes
1answer
7k views

MySQL foreign key to allow NULL?

I'm piecing together an image website. The basic schema's pretty simple MySQL, but I'm having some trouble trying to represent possible admin flags associated with an image ("inappropriate", ...
3
votes
3answers
240 views

Three-way Referential Integrity - SQL Server 2008

I am building a database using SQL Server 2008 to store prices of securities that are traded on multiple markets. For a given market, all the securities have the same holiday calendar. However, the ...
3
votes
3answers
285 views

Simple constraint to limit an Oracle table to a single row

I'm looking for a simple way to limit an application configuration table to 1 row. I know I can do this with a virtual column containing a subquery, or a materialized view on top, but really it's a ...
3
votes
2answers
486 views

How to reference other tables in check constraints?

I have a table, ProductSupportArticles: ProductSupportArticleID int NOT NULL <primary key> ParentArticleID int NULL ProductID int NOT NULL Title varchar(100) NOT NULL Content varchar(MAX) NOT ...
3
votes
2answers
386 views

In MySQL, can I defer referential integrity checks until commit

As in this question, I've been reading PoEAA and wondering if it's possible to defer referential integrity checks until commit in MySQL. I've run into this problem when wanting to insert a bunch of ...
3
votes
3answers
351 views

Referential integrity in a relational data warehouse. Is it worth it? and what are the alternatives?

If you had to build a relational data warehouse of biblical proportions using SQL Server 2008, would you use foreign keys to enforce data integrity, or would you use some other means? I like foreign ...
3
votes
2answers
193 views

Are there tools for Rails to validate referential integrity of the database?

Applications have bugs or get bugs when updated, some hidden that they get detected months or years later, producing orphaned records, keys pointing nowhere etc. even with proper test suites. ...
3
votes
4answers
762 views

Removal of foreign key constraints, Referential integrity and Hibernate

My colleague mentioned that our client DBA proposed the removal of all foreign key constraints in our project Oracle DB schema. Initially I did not agree with the decision. I am a developer not a DBA. ...
3
votes
2answers
104 views

How can you check for foreign key references for a list of records before attempting to delete any of these records in MySQL?

Is there a way, when you have a list of records, to check if each of these records have foreign key references before you attempt to delete any of these records? As an example, if I have a list of ...
3
votes
5answers
573 views

SQL2005: Linking a table to multiple tables and retaining Ref Integrity?

Here is a simplification of my database: Table: Property Fields: ID, Address Table: Quote Fields: ID, PropertyID, BespokeQuoteFields... Table: Job Fields: ID, PropertyID, BespokeJobFields... Then ...
2
votes
1answer
82 views

Oracle - referential integrity with multiple types of data

I'm working on a set of database tables in Oracle and trying to figure out a way to enforce referential integrity with slightly polymorphic data. Specifically, I have a bunch of different ...
2
votes
2answers
151 views

SQL Server: how to know if any row is referencing the row to delete

You cannot delete a row if any row is referencing the row to delete via a FK. Is it possible to know if any row is referencing the row to delete before executing a DELETE statement?
2
votes
3answers
250 views

data redundancy

Can referential integrity constraints help in addressing data redundancy problems?
2
votes
4answers
107 views

Tools, rules or processes for checking internal consistency of XML config files

I've worked on projects that have very complex XML configuration, and one problem that's faced is maintaining the internal consistency of the XML. In this case I don't mean the strict XML schema ...
2
votes
1answer
250 views

First database with referential integrity constraints — suggestions, feedback, errors?

TARGET_RDBMS: MySQL-5.X-InnoDB ("X" equals current stable release) BACKGROUND: Building my first database with true referential integrity constraints, in an effort to get feedback, after creating the ...
2
votes
2answers
94 views

Single column/primary key only table for referential integrity?

Maybe i'm going about this wrong but my working on a database design for one of my projects. I have an entity with a classification column which groups up entities into convenient categories for the ...
2
votes
1answer
110 views

Consolidate multiple MySQL databases into one preserving referential integrity

I'm wanting to consolidate numerous MySQL databases, all with the same schema definition, into a single database. If I have a dump file from each database, how will I import them all into the same ...
2
votes
1answer
183 views

referential integrity in rails

So, I just came across the fact that rails does not support referential integrity regarding foreign keys and was fairly surprised. So, what's the best way to manage this? Is there a "rails" way for ...
2
votes
7answers
125 views

Modeling many-to-one with constraints?

I'm attempting to create a database model for movie classifications, where each movie could have a single classification from each of one of multiple rating systems (e.g. BBFC, MPAA). This is the ...
2
votes
3answers
190 views

SQL Server relationships buried in stored procedures rather than schema

At present we have very little referential integrity, as well as having a number of tables that self-join (and indeed would perhaps better be represented as separate tables or views that joined). The ...
2
votes
3answers
534 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)? ...
2
votes
4answers
283 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 ...
2
votes
6answers
242 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 ...
2
votes
6answers
424 views

How do you determine if a database table relationship merits enforcing referential integrity?

I have an application where the majority of the database tables have a strong relationship to one other table. Currently I am enforcing referential integrity with foreign keys, but I'm wondering if ...
2
votes
2answers
154 views

Maintaining referential integrity

Given the schema: MACHINE_TYPE { machine_type } MACHINE { machine, machine_type } SORT_PLAN { sort_plan, machine_type } SCHEDULE { day_of_week, machine, sort_plan } and the business rule: A ...
1
vote
0answers
21 views

SQL Server - Maintain Referential Integrity without CASCADE and INSTEAD OF trigger

I have a table (TableB) that has a foreign key relationship with a parent table (TableA). When I delete a record in Table A, I want to preserve referential integrity by deleting all records in TableB ...
1
vote
0answers
50 views

Access: impose referential integrity on a linked table

I have two Access databases: Main stores most of my data and Memos stores data of datatype Memo. I am storing the memos in a separate db because everything I read about Memo fields said they were ...
1
vote
2answers
37 views

Check referential integrity in stored procedure

I have a customer table and an order table in an sql server 2000 database. I don't want an order to be in the order table with a customerID that doesn't exist in the customer table so I have put a ...
1
vote
3answers
111 views

Does creating a foreign key automatically mean referential integrity?

If I create a foreign key is referential integrity automatic? Do I have to set anything else to make cascading work? edit: for example, in postgres. I mean by automatic that I don't need to set ...
1
vote
1answer
443 views

zend adapter beginTransaction() and commit() fails

I am facing a strange issue The Zend_DB_Adapter's beginTrasaction() and commit() methods don't seem to be working as expected. I have INSERT statements (in a FOR LOOP) enclosed in beginTrasaction() ...
1
vote
1answer
44 views

What is the way proper way to manage Rails ActiveRecord associations?

I am new to Rails so bear with me… I am trying to create a set of data related to 2 different models. I currently have the following models: class M < ActiveRecord::Base belongs_to :u ...
1
vote
3answers
244 views

Oracle: FK referring PK in multiple parent tables

In Oracle 10g, is it possible to define referential integrity constraints for a Foreign Key to refer to Primary Key in multiple parent tables. Eg: DEPT_AMER DEPT_ID 10 11 12 DEPT_APAC DEPT_ID ...
1
vote
4answers
196 views

MySQL relationships & constraints, should I use them?

I've built a large database in MySQL and created all the relationships between the tables with SQLYog. That's all well and good but in my PHP site that I'm building I often have trouble when it comes ...
1
vote
2answers
356 views

Proper foreign keys for MS SQL Server 2005 without UNIQUE constraints?

I have two tables (MS SQL Server 2005) with an existing application (no DB alterations other than indexes, etc are allowed). The two tables are: ActivityDetails (Primary table) ActivityDetailkey ...
1
vote
3answers
73 views

Should I enforce business logic through database errors?

There's an interesting design decision I've been thinking about lately. Let's say I'm adding usernames to a table, and I want to make sure there are no duplicates. The username column is NOT NULL ...

1 2