Tagged Questions

In the context of relational databases, a foreign key is a referential constraint between two tables

learn more… | top users | synonyms

35
votes
3answers
10k views

When to use “ON UPDATE CASCADE”

I use "ON DELETE CASCADE" regular but never use "ON UPDATE CASCADE" as I am not so sure what situation it will be useful. For the sake of discussion let see some code. CREATE TABLE parent ( id ...
18
votes
5answers
28k views

How to create relationships in mySQL

In class, we are all 'studying' databases, and everyone is using Access. Bored with this, i am trying to do what the rest of the class is doing, but with raw SQL commands with mySQL instead of using ...
10
votes
2answers
522 views

Does Rails need database-level constraints?

I have the same problem as in the following post. So I am wondering, why doesn't Rails support generating foreign keys by default? Isn't it necessary? Or are we supposed to do it manually?
8
votes
8answers
6k views

Any example of a necessary nullable foreign key?

Customers customer_id Orders order_id customer_id fk If I have two tables and define a foreign key on customer_id in the Orders table, by allowing it to be null I am saying that I can have an ...
8
votes
1answer
2k views

Why can you not have a foreign key in a polymorphic association?

Why can you not have a foreign key in a polymorphic association, such as the one represented below as a Rails model? class Comment < ActiveRecord::Base belongs_to :commentable, :polymorphic ...
7
votes
4answers
6k views

Rails: Scaffold to automatically do one-to-many relationship

Not sure if I'm reading this right, but it seems like Scaffold will not do a one-to-many relationship in its entirety. For instance, if I create messages with scaffold and then I want comments on ...
6
votes
5answers
329 views

Multiple column foreign key contraints

I want to setup table constraints for the following scenario and I’m not sure how to do it or if it’s even possible in SQL Server 2005. I have three tables A,B,C. C is a child of B. B will have a ...
6
votes
6answers
134 views

Adding new fields vs creating separate table

I am working on a project where there are several types of users (students and teachers). Currently to store the user's information, two tables are used. The users table stores the information that ...
6
votes
2answers
392 views

How do I add relationships at runtime using DBIx::Class and Catalyst?

In the application I am building, users can specify relationships between tables. Since I only determine this at runtime, I can't specify has_many or belongs_to relationships in the schema modules ...
5
votes
4answers
263 views

Why do Hibernate docs recommend to use a join table for a one-to-many relation?

I thought that the common way to model a one-to-many relation in a database is via a foreign key relationship (i.e. one customer with many orders -> order table gets a FK reference to customer table). ...
5
votes
3answers
55 views

Are joins on an FK faster than joins without an FK?

Say I have two tables, a and b: a { pk as int fk as int ... } b { pk as int ... } I want to join a and b in a query like so: FROM a JOIN b on a.fk = b.pk Which of the following scenarios ...
5
votes
1answer
1k views

Entity framework code-first null foreign key

I have a User < Country model. A user belongs to a country, but may not belong to any (null foreign key). How do I set this up? When I try to insert a user with a null country, it tells me that it ...
5
votes
5answers
318 views

Database tables, one table referencing multiple unrelated tables

This question has come up a few times in various forums in my searching, but none have provided a concise resolution. If I have the following tables: User +- id +- username +- password Article +- ...
5
votes
2answers
473 views

HABTM, or multiple belongs_to?

I'm teaching myself Rails, and as a test project I'm mocking up a simple question/answer app similar to stackoverflow. In my simplified version I have: questions answers users (the authors of ...
5
votes
3answers
150 views

Can this relationship be described in Ruby on Rails?

Is this a relationship that can be described in Ruby on Rails' ActiveRecord model relationships? Customer Address =================== ========= ...
5
votes
3answers
10k views

How to create foreign key relationships with the Entity Framework?

I want to create a new row in my database on a table that has a couple of foreign key relationships and I haven't been able to get a handle on what order and what calls need to be made. This is what I ...
4
votes
2answers
37 views

SQL Server two-way cascade?

I'm trying to put together a database in SQL Server Management Studio 2008 which will manage the data without having to programatically process the data but I'm having some issues at the moment. I ...
4
votes
2answers
134 views

foreign key discovery tools

A good way to quickly survey the information in a database is to apply a tool that automatically creates a database diagram of all tables and all relationships between them. In my experience, such ...
4
votes
1answer
128 views

ROR 3 defining foreign key relationship

I'm having trouble finding a good tutorial on how to define basic foreign key relationships between models. suppose I have a User model and a Game model.. I would like to define two fields in the ...
4
votes
1answer
1k views

“Invalid Index n for this SqlParameterCollection with Count=n” OR “foreign key cannot be null”

I have been successfully using NHibernate for quite some time now and have been able to solve a lot of pitfalls with an application that I developed with it and that is running in production. The ...
4
votes
2answers
1k views

MySQL : show constraints on tables command

I have tables that I've tried setting PK FK relationships on but I want to verify this. How can I show the PK/FK restraints? I saw this manual page, but it does not show examples and my google search ...
4
votes
3answers
140 views

Linq: To join or not to join (which is the better way, joins or relationships)

I have written quite a bit of code which uses the Linq2Sql table relationships provided to me just by having foreign keys on my database. But, this is proving to be a bit laborious to mock data for my ...
4
votes
2answers
638 views

Fluent Nhibernate - Specify foreign key constraint name between class and joined subclass

I think this should be simple, but I can't figure out how to do it. Suppose I have the following maps: public class AnimalMap : ClassMap<Animal> { Id( x => x.Id); } public class CatMap: ...
4
votes
1answer
215 views

Database schema question

I am designing a data model for a local city page, more like requirements for it. So 4 tables: Country, State, City, neighbourhood. Real life relationships is: Country owns multiple State which owns ...
3
votes
1answer
30 views

Grouping postgresql tables in schemas

I'm currently building an app that contains around 60 or so tables, some with meta information, some with actual data and a couple of views on top of them. To keep things organized I'm prefixing all ...
3
votes
0answers
135 views

ON UPDATE CASCADE problem with two columns in a single table in SQL Server [closed]

Possible Duplicate: Introducing FOREIGN KEY constraint 'c_name' on table 't_name' may cause cycles or multiple cascade paths I have a person table person_id name ...
3
votes
2answers
120 views

Understanding / mySQL aka tricking ForeignKey relationships in Django

So I've inherited some django. The mySQL table is simple enough where parent is NOT a FK relationship just the "Parent" id: CREATE TABLE `Child` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, ...
3
votes
3answers
242 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
4answers
248 views

Foreign Key Constraints in Oracle

I have Entity Relationship Model (ERD) where entities IndividualCategory and TeamCategory relate to entity Category. Now I want to create tables in Oracle DB. I started like this: CREATE TABLE ...
3
votes
1answer
294 views

Need assistance with uncanny, reproducible MySQL ERROR 1452 (23000) Foreign Key Constraint

MySQL select version() is 5.5.9 on Mac OS/X 10.6 Question When I execute the sql script below, I encounter a very perplexing foreign key constraint error. It seems as though it should not throw this ...
3
votes
6answers
435 views

Database Design: Explain this schema

Full disclosure...Trying feverishly here to learn more about databases so I am putting in the time and also tried to get this answer from the source to no avail. Barry Williams from databaseanswers ...
3
votes
1answer
494 views

Entity Framework — Dependent objects not deleted before principal object when cascade deleting composite key entities

I'm having an issue with cascade deletion of dependent objects with composite keys. Specifically, the emitted SQL instructions by EF tries to delete the principle entity before the dependent entity. ...
3
votes
3answers
432 views

Rails: Non id foreign key lookup ActiveRecord

I want ActiveRecord to lookup by a non-id column from a table. Hope this is clear when I give you my code sample. class CoachClass < ActiveRecord::Base belongs_to :coach end class Coach < ...
3
votes
1answer
82 views

Can you explain what's association relation in database?

I thought it was alias for simple foreign key relation,but seems not. Can you take MySQL as an example what is association relation? I guess it means many2many relation,is that true?
3
votes
2answers
2k views

Configuring Entity Framework on a Database Undefined Foreign Key Relationships

For a variety of reasons the database that I'm working on (SQL Server 2005) doesn't have any relationships defined. Every table has a primary key. And most tables have at least one foreign key, ...
3
votes
4answers
614 views

How do I query for foreign keys that don't match their constraints?

SQL Server 2005. I'm adding Foreign Key constraints to the database of an application that allegedly didn't need them. Naturally, the data has become unreliable and there are orphaned entries in the ...
2
votes
1answer
31 views

MySQL - Using foreign key as primary key too

I have table 1 with a primary key user_id and table 2 where user_id is a foreign key. Only 1 record per user_id can exist in table 2, and no record can exist without it. QUESTION: Can user_id in ...
2
votes
1answer
33 views

Why should not violate foreign key while enable?

Why should not violate foreign key while enable in SQL Server? We have two tables, Order Header and Order Detail. Order header table's OrderID column references OrderDetail table's OrderID column. ...
2
votes
2answers
64 views

Mysql deduce foreign key relationship for random queries

I am an MySQL novice and am looking for the solution to the following problem: I would like to create a CMS with cppcms which shall be capable to have modules. Since I want to reduce the chance of ...
2
votes
2answers
63 views

Hibernate: many-to-many through additional table

I have these tables, organization can be a sender or receiver of many messages, a msg can have 2 organizations that send it or receive. I know that my db doesnt make sense but i cant change it: So, ...
2
votes
1answer
30 views

How can I retrieve referenced tables (FKs) using PHP from MySQL?

Using SHOW TABLE and SHOW COLUMNS , I can get info about tables (fields, if they are PRIMARY KEYS, FK, etc...) but NOTHING about outlinks of foreign keys! EDIT: Thanks a lot... I will have the ...
2
votes
2answers
49 views

Foreign key shortcuts in table

Imagine a schema as such. NOTE TABLE: NoteID, Note, DetailedTaskID, ..... DETAILED TASK TABLE: DetailedTaskID, WorkOrderID, ..... WORKORDER TABLE: WorkOrderID, ProjectID, ..... ...
2
votes
1answer
33 views

Trying to find how to link three tables together

At the moment I have three tables that I am trying to connect and figure out what queries will get the results I need and also follow best practices. MySQL is still pretty new to me, and this is my ...
2
votes
1answer
165 views

Can not delete or modify or see same table foreign key constraint

A same table foreign key constraint in my database is not accessible. I can not drop it, disable it, add it back, ... How do I remove it and re-add it? Note: I have several versions of my database ...
2
votes
1answer
122 views

Multiple level dependency models in Zend Framework

I'm developing an application in Zend Framework to handle the rentals for a commercial property rental company. The company has multiple buildings which each have multiple floors, which each have ...
2
votes
1answer
71 views

How do I retrieve objects linked through Django generic relations and determine their types?

Here is my models.py: class Player(models.Model): name = models.CharField(max_length=100) #...fields... comment = models.generic.GenericRelation(Comment) class Game(models.Model): ...
2
votes
2answers
42 views

Multiples foreign keys ? is that necessary?

I have a important question about foreign keys and i wasn´t unable to search properly because of my lack of english :( sorry. I have Table A, this table have 3 foreign keys (id_tableA1, id_tableA2, ...
2
votes
2answers
77 views

Adding composite foreign key fails in MySQL5

I am trying to enforce that the state/province and country names in the address information for users comes from a set of tables where I list countries and state/provinces. In order to do this I ...
2
votes
1answer
86 views

A large amount of foreign keys in mysql ? this is good?

Hey guys (and probably girls). I'm modelling a huge database in mysql for a company that i work and i'm stucked on things that you might help me. My question is very simple: How do i know that a ...
2
votes
4answers
237 views

Foreign key with composite primary key not working in MySql

I have the following SQL script. After it runs the foreign key relationship is never enforced. CREATE TABLE Country ( name varchar(40) NOT NULL, abbreviation varchar(4) NOT NULL, PRIMARY KEY ...

1 2 3 4 5 9