Are Foreign Keys really necessary in a database design? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-21T16:46:13Z http://stackoverflow.com/feeds/question/18717 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design 21 Are Foreign Keys really necessary in a database design? Niyaz 2008-08-20T20:18:08Z 2009-09-03T19:45:21Z <p>As far as I know, foreign keys are used to aid the programmer to manipulate data in the correct way. Suppose a programmer is actually doing this in the right manner already, then do we really need the concept of foreign keys?</p> <p>Are there any other uses for foreign keys? Am I missing something here?</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18723#18723 43 Answer by John Topley for Are Foreign Keys really necessary in a database design? John Topley 2008-08-20T20:19:33Z 2008-08-20T20:19:33Z <p>Foreign keys help enforce referential integrity at the data level. They also improve performance because they're normally indexed by default.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18728#18728 28 Answer by Greg Hewgill for Are Foreign Keys really necessary in a database design? Greg Hewgill 2008-08-20T20:22:36Z 2008-08-20T20:22:36Z <p>Foreign keys can also help the programmer write less code using things like ON DELETE CASCADE. This means that if you have one table containing users and another containing orders or something, then deleting the user could automatically delete all orders that point to that user.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18730#18730 13 Answer by Eric Z Beard for Are Foreign Keys really necessary in a database design? Eric Z Beard 2008-08-20T20:24:09Z 2008-08-20T20:58:01Z <p>I can't imagine designing a database without foreign keys. Without them, eventually you are bound to make a mistake and corrupt the integrity of your data.</p> <p>They are not <em>required</em>, strictly speaking, but the benefits are huge.</p> <p>I'm fairly certain that FogBugz does not have foreign key constraints in the database. I would be interested to hear how the Fog Creek team structures their code to guarantee than they will never introduce an inconsistency.</p> <blockquote> <p>Eric: FogBugz uses a naming convention for foreign keys. For example <strong>ixBug</strong> is understood to be an index into the primary key of the table <strong>Bug</strong>. So far we've never had a problem. -- <em>Joel Spolsky</em></p> </blockquote> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18732#18732 2 Answer by samjudson for Are Foreign Keys really necessary in a database design? samjudson 2008-08-20T20:24:15Z 2008-08-20T20:24:15Z <p>Without a foreign key how do you tell that two records in different tables are related?</p> <p>I think what you are referring to is referential integrity, where the child record is not allowed to be created without an existing parent record etc. These are often known as foreign key constraints - but are not to be confused with the existence of foreign keys in the first place.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18735#18735 0 Answer by Pascal for Are Foreign Keys really necessary in a database design? Pascal 2008-08-20T20:26:21Z 2008-08-20T20:26:21Z <p>You can view Foreign keys as a constraint that, </p> <ul> <li>Helps maintain data integrity</li> <li>Shows how data is related to each other (which can help in enforcing business logic and rules)</li> <li>If used correctly, can help increase the efficiency with which the data is fetched from the tables.</li> </ul> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18739#18739 0 Answer by Kibbee for Are Foreign Keys really necessary in a database design? Kibbee 2008-08-20T20:28:12Z 2008-08-20T20:28:12Z <p>@Greg Hewgill</p> <p>This could pontentially lead to a lot of problems. You should be very careful with thinks like DELETE CASCADE, as in many cases, you would want to keep the orders created by a user when deleting the user. </p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18741#18741 4 Answer by Orion Edwards for Are Foreign Keys really necessary in a database design? Orion Edwards 2008-08-20T20:28:30Z 2008-08-20T20:28:30Z <p>I think <strong>some single thing</strong> at some point must be responsible for ensuring valid relationships.</p> <p>For example, Rails does not use Foreign Keys, but validates all the relationships itself. If you only ever access your database from that rails app, this is fine.</p> <p>However, if you have other clients which are writing to the database, then without foreign keys they need to implement their own validation. You then have 2 copies of the validation code which are most likely different, which any programmer should be able to tell is a cardinal sin.</p> <p>At that point, foreign keys really are neccessary, as they allow you to move the responsibility to a single point again.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18758#18758 5 Answer by DrPizza for Are Foreign Keys really necessary in a database design? DrPizza 2008-08-20T20:35:10Z 2008-08-20T20:35:10Z <blockquote> <p>Suppose a programmer is actually doing this in the right manner already</p> </blockquote> <p>Making such a supposition seems to me to be an extremely bad idea; in general software is phenomenally buggy.</p> <p>And that's the point, really. Developers can't get things right, so ensuring the database can't be filled with bad data is a Good Thing.</p> <p>Although in an ideal world, natural joins would use relationships (i.e. FK constraints) rather than matching column names. This would make FKs even more useful.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18759#18759 8 Answer by Peter Meyer for Are Foreign Keys really necessary in a database design? Peter Meyer 2008-08-20T20:35:18Z 2008-08-21T12:12:54Z <p>Personally, I am in favor of foreign keys because it formalizes the relationship between the tables. I realize that your question presupposes that the programmer is not introducing data that would violate referential integrity, but I have seen way too many instances where data referential integrity is violated, despite best intentions! </p> <p>Pre-foreign key constraints (aka declarative referential integrity or DRI) lots of time was spent implementing these relationships using triggers. The fact that we can formalize the relationship by a declarative constraint is very powerful.</p> <p>@John - Other databases may automatically create indexes for foreign keys, but SQL Server does not. In SQL Server, foreign key relationships are only constraints. You must defined your index on foreign keys separately (which can be of benefit.)</p> <p>Edit: I'd like to add that, IMO, the use of foreign keys in support of ON DELETE or ON UPDATE CASCADE is not necessarily a good thing. In practice, I have found that cascade on delete should be carefully considered based on the relationship of the data -- e.g. do you have a natural parent-child where this may be OK or is the related table a set of lookup values. Using cascaded updates implies you are allowing the primary key of one table to be modified. In that case, I have a general philosophical disagreement in that the primary key of a table should not change. Keys should be inherently constant.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18760#18760 4 Answer by csmba for Are Foreign Keys really necessary in a database design? csmba 2008-08-20T20:37:08Z 2008-08-20T20:37:08Z <p>yes.</p> <ol> <li>they keep you honest</li> <li>they keep new developers honest</li> <li>you can do ON DELETE CASCADE</li> <li>helps you to generate nice diagrams that self explain the links between tables</li> </ol> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18805#18805 12 Answer by Mark Harrison for Are Foreign Keys really necessary in a database design? Mark Harrison 2008-08-20T20:53:53Z 2009-09-03T19:45:21Z <blockquote> <p>"Suppose a programmer is actually doing this in the right manner already..."</p> </blockquote> <p>See you on <a href="http://thedailywtf.com/" rel="nofollow">Daily WTF</a>! :)</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18810#18810 0 Answer by John Christensen for Are Foreign Keys really necessary in a database design? John Christensen 2008-08-20T20:55:32Z 2008-08-20T20:55:32Z <p>We don't currently use foreign keys. And for the most part we don't regret it.</p> <p>That said - we're likely to start using them a lot more in the near future for several reasons, both of them for similar reasons:</p> <ol> <li><p>Diagramming. Its so much easier to produce a diagram of a database if there are foreign key relationships correctly used.</p></li> <li><p>Tool support. Its a lot easier to build data models using Visual Studio 2008 that can be used for LINQ to SQL if there are proper foreign key relationships.</p></li> </ol> <p>So I guess my point is that we've found that if we're doing a lot of manual SQL work (construct query, run query, blahblahblah) foreign keys aren't necessarily essential. Once you start getting into using tools, though, they become a lot more useful.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18816#18816 2 Answer by Mark Harrison for Are Foreign Keys really necessary in a database design? Mark Harrison 2008-08-20T20:57:14Z 2008-08-20T20:57:14Z <p>They are not strictly necessary, in the way that seatbelts are not strictly necessary. But they can really save you from doing something stupid that messes up your database.</p> <p>It's so much nicer to debug a FK constraint error than have to reconstruct a delete that broke your application.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18964#18964 2 Answer by Mark Brackett for Are Foreign Keys really necessary in a database design? Mark Brackett 2008-08-20T22:10:22Z 2008-08-20T22:10:22Z <p>The best thing about foreign key constraints (and constraints in general, really) are that you can rely on them when writing your queries. A lot of queries can become a lot more complicated if you can't rely on the data model holding "true".</p> <p>In code, we'll generally just get an exception thrown somewhere - but in Sql, we'll generally just get the "wrong" answers.</p> <p>In theory, Sql Server could use constraints as part of a query plan - but except for check constraints for partitioning, I can't say that I've ever actually witnessed that.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18986#18986 6 Answer by Guy for Are Foreign Keys really necessary in a database design? Guy 2008-08-20T22:29:43Z 2008-08-20T22:29:43Z <p>A database schema without FK constraints is like driving without a seat belt.</p> <p>One day, you'll regret it. Not spending that little extra time on the design fundamentals and data integrity is a sure fire way of assuring headaches later.</p> <p>Would you accept code in your application that was that sloppy? That directly accessed the member objects and modified the data structures directly. </p> <p>Why do you think this has been made hard and <em>even unacceptable</em> within modern languages? </p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/19289#19289 1 Answer by danb for Are Foreign Keys really necessary in a database design? danb 2008-08-21T03:30:57Z 2008-08-21T03:30:57Z <p>I think about it in terms of cost/benefit... in mysql, adding a constraint is a single additional line of DDL.. it's just a handful of key words and a couple seconds of thought. that's the only "cost" in my opinion... </p> <p>Tools love foreign keys... Foreign keys prevent bad data (i.e. orphaned rows) that may not affect business logic or functionality and therefor go unnoticed, and build up. It also prevents developers who are unfamiliar with the schema from implementing entire chunks of work without realizing they're missing a relationship. Perhaps everything is great within the scope of your current app... but if you missed something... and someday something unexpected is added... (think fancy reporting).. you might be in a spot where you have to manually clean up bad data that's been accumulating since the inception of the schema without a database enforced check. </p> <p>The little time it takes to codify what's already in your head when you're putting things together could save you or someone else a bunch of grief months or years down the road.</p> <p>the question:</p> <blockquote> <p>Are there any other uses for foreign keys? Am I missing something here?</p> </blockquote> <p>is a bit loaded... insert comments, indentation or variable naming in place of "foreign keys"... if you already understand the thing in question perfectly... it's "no use" to you.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/19510#19510 0 Answer by Grzegorz Gierlik for Are Foreign Keys really necessary in a database design? Grzegorz Gierlik 2008-08-21T09:06:22Z 2008-08-21T09:06:22Z <p>Foreign keys had never been explicit (FOREIGN KEY REFERENCES table(column)) declared in projects (business apps, social networking websites) which I worked on.</p> <p>But there always was kind of convention of naming columns which were foreign keys.</p> <p>It's like with <a href="http://en.wikipedia.org/wiki/Database_normalization" rel="nofollow">database normalization</a> -- you have to know what are you doing and what are consequence of that (mainly performance).</p> <p>I am aware of advantages of foreign keys (data integrity, index for FK column, tools aware of database schema), but also I am afraid of using FK as general rule. </p> <p>Also various database engines could serve FK in different way, which could lead to subtle bugs during migration.</p> <p>Removing all orders and invoices of deleted client with ON DELETE CASCADE is the perfect example of nice looking, but wrong designed, database schema.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/22686#22686 2 Answer by Tundey for Are Foreign Keys really necessary in a database design? Tundey 2008-08-22T15:40:17Z 2008-08-22T15:40:17Z <p>Is there a benefit to not having foreign keys? Unless you are using a crappy database, FKs aren't that hard to set up. So why would you have a policy of avoiding them? It's one thing to have a naming convention that says a column references another, it's another to know the database is actually verifying that relationship for you.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/80005#80005 0 Answer by unknown (yahoo) for Are Foreign Keys really necessary in a database design? unknown (yahoo) 2008-09-17T04:30:15Z 2008-09-17T04:38:51Z <p>Yes. The ON DELETE [RESTRICT|CASCADE] keeps developers from stranding data, keeping the data clean.</p> <p>I recently joined a team of Rails developers who did not focus on database constraints such as foreign keys.</p> <p>Luckily, I found these: <a href="http://www.redhillonrails.org/foreign_key_associations.html" rel="nofollow">http://www.redhillonrails.org/foreign_key_associations.html</a> -- RedHill on Rails plug-ins generate foreign keys using the "Convention over Configuration" style. A migration with *product_id* will create a foreign key to the <em>id</em> in the <em>products</em> table. </p> <p>Check out the other great plug-ins at <a href="http://www.redhillonrails.org/" rel="nofollow">RedHill</a>, including migrations wrapped in transactions. </p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/80073#80073 1 Answer by Craig for Are Foreign Keys really necessary in a database design? Craig 2008-09-17T04:44:39Z 2008-09-17T04:44:39Z <p>Foreign keys allow someone who has not seen your database before to determine the relationship between tables.</p> <p>Everything may be fine now, but think what will happen when your programmer leaves and someone else has to take over.</p> <p>Foreign keys will allow them to understand the database structure without trawling through thousand of lines of code.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/83137#83137 1 Answer by olavk for Are Foreign Keys really necessary in a database design? olavk 2008-09-17T13:24:52Z 2008-09-17T16:49:36Z <p>I suppose you are talking about <em>foreign key constraints enforced by the database</em>. You probably already are using foreign keys, you just havent told the database about it.</p> <blockquote> <p>Suppose a programmer is actually doing this in the right manner already, then do we really need the concept of foreign keys?</p> </blockquote> <p>Theoretically no, However there have never been a piece of software without bugs. </p> <p>Bugs in application code are typically not that dangerous - you identify the bug and fix it, and after that the app runs smoothly again. But if a bug allows currupt data to enter the database, then you are stuck with it! Its very hard to recover from corrupt data in the DB, </p> <p>Consider if a subtle bug in FugBugz allowed a corrupt foreign key to be written in the DB. It might be easy to fix the bug and quickly push the fix to customers in a bugfix release. However, how should the corrupt data in dozens of databases be fixed? <em>Correct</em> code might now suddenly break because the assumptions about the integrity of foreign keys dont hold anymore.</p> <p>In web applications you typically only have one program speaking to the database, so there is only one place where bugs can corrupt the data. In a enterprise application there might be several independant applications speaking to the same database (not to mention people working directly with the db shell). There is no way to be sure that all applications follow the same assumptions without bugs, always and forever.</p> <p>If constraints are encodede in the database, then the worst than can happen with bugs is that the user is shown an ugly error message about some sql constraint not satisfied. This is <em>much</em> prefereable to letting currupt data into your enterprise database, where it in turn will break all your applications or just lead to all kinds of wrong or misleading output.</p> <p>Oh, and foreign key constraints also improves performance because they are indexed by default. I cant think of any reason <em>not</em> to use foreign key constraints.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/86501#86501 3 Answer by Mike McAllister for Are Foreign Keys really necessary in a database design? Mike McAllister 2008-09-17T19:09:02Z 2008-09-17T19:09:02Z <p>They are important, because your application is not the only way data can be manipulated in the database. Your application may handle referential integrity as honestly as it wants, but all it takes is one bozo with the right privileges to come along and issue an insert, delete or update command at the database level, and all your application referential integrity enforcement is bypassed. Putting FK constraints in at the database level means that, barring this bozo choosing to disable the FK constraint before issuing their command, the FK constraint will cause a bad insert/update/delete statement to fail with a referential integrity violation.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/176260#176260 1 Answer by Peter Wone for Are Foreign Keys really necessary in a database design? Peter Wone 2008-10-06T21:26:50Z 2008-10-06T21:26:50Z <blockquote> <p>As far as I know, foreign keys are used to aid the programmer to manipulate data in the correct way. </p> </blockquote> <p>FKs allow the DBA to protect data integrity from the fumbling of users when the programmer <em>fails</em> to do so, and sometimes to protect against the fumbling of programmers.</p> <blockquote> <p>Suppose a programmer is actually doing this in the right manner already, then do we really need the concept of foreign keys?</p> </blockquote> <p>Programmers are mortal and fallible. FKs are <em>declarative</em> which makes them harder to screw up. </p> <blockquote> <p>Are there any other uses for foreign keys? Am I missing something here?</p> </blockquote> <p>Although this is not why they were created, FKs provide strong reliable hinting to diagramming tools and to query builders. This is passed on to end users, who desperately need strong reliable hints.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/497971#497971 0 Answer by darnpunk for Are Foreign Keys really necessary in a database design? darnpunk 2009-01-31T01:30:52Z 2009-01-31T01:30:52Z <p>Sorry if I am kind of late on this. I read some articles on some views of FKs on top of the answers given here and one thing I would like to know is how much of performance impact does FK gives for high I/O? Be it increase or decrease of performance.</p> <p>I am going to build a database for an online game and there will be frequents reads/writes. According to one of the articles I've read, FKs can result in locks that can slow down performance. For an online game, I think this may decrease game performance. </p> <p>One thing about FKs though is how easy it is to show a visual diagram of the schema and the relationships. Indexing the FKs may speed things up but by how much? Is it really worth having FKs for all types of database? Do all database perform similar with/without FKs?</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/765525#765525 0 Answer by cherouvim for Are Foreign Keys really necessary in a database design? cherouvim 2009-04-19T14:53:11Z 2009-04-19T14:53:11Z <p>FKs are very important and should always exist in your schema, <a href="http://www.infoq.com/interviews/dan-pritchett-ebay-architecture" rel="nofollow">unless you are eBay</a>.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/765533#765533 0 Answer by SquareCog for Are Foreign Keys really necessary in a database design? SquareCog 2009-04-19T15:02:54Z 2009-04-19T15:02:54Z <p>This comes up often around here. I blame Joel :-).</p> <p>Many good answers here; rather then retype mine, I'll just give you a link:</p> <p><a href="http://stackoverflow.com/questions/83147/whats-wrong-with-foreign-keys">http://stackoverflow.com/questions/83147/whats-wrong-with-foreign-keys</a></p>