Should a development environment disable foreign keys? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T09:14:54Z http://stackoverflow.com/feeds/question/879763 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/879763/should-a-development-environment-disable-foreign-keys 5 Should a development environment disable foreign keys? John Christensen 2009-05-18T20:48:52Z 2009-05-19T12:47:46Z <p>So while we're using foreign keys in our current project, I've heard the argument before that enabling foreign key checking within a development environment simply puts roadblocks in front of developers - code should not rely on foreign keys being in place.</p> <p>I was wondering what people thought about this idea - when developing, do you keep foreign keys enabled in your development environment, or do you turn them off?</p> http://stackoverflow.com/questions/879763/should-a-development-environment-disable-foreign-keys/879776#879776 9 Answer by McWafflestix for Should a development environment disable foreign keys? McWafflestix 2009-05-18T20:51:59Z 2009-05-18T20:51:59Z <p>Absolutely keep them enabled. The existence of foreign key constraints is actually very useful in development; not using the constraints can allow for lazy development; moreover, it can allow for some serious problems to creep into the code, that could cause some difficulties when moving to a production environment.</p> http://stackoverflow.com/questions/879763/should-a-development-environment-disable-foreign-keys/879777#879777 23 Answer by Mitchel Sellers for Should a development environment disable foreign keys? Mitchel Sellers 2009-05-18T20:52:10Z 2009-05-18T20:52:10Z <p>I ALWAYS keep them enabled. You want to make sure that your code isn't going to do something that violates FK rules. If you have them removed there is nothing preventing the code from putting in bad data. Additionally we will use tools such as CodeSmith to help with some of our automation pieces, and with CodeSmith, it can automatically generate query procedures for us if we have the FK's in place.</p> <p>Overall, I am a firm believer that the development environment should be a very close replica to that of the production environment. If you don't have them it is very possible to have code that will fail in production because it violates a FK constraint, and it will work just fine in test.</p> http://stackoverflow.com/questions/879763/should-a-development-environment-disable-foreign-keys/879780#879780 4 Answer by JD for Should a development environment disable foreign keys? JD 2009-05-18T20:52:30Z 2009-05-18T20:52:30Z <p>I highly recommend that you keep them on. It provides a saftey net to make sure that your Data Layer is functioning properly. That is unless you are working with ETL applications and you need to turn off contraints on purpose for data loads.</p> http://stackoverflow.com/questions/879763/should-a-development-environment-disable-foreign-keys/879782#879782 1 Answer by spender for Should a development environment disable foreign keys? spender 2009-05-18T20:52:48Z 2009-05-18T20:52:48Z <p>Foreign keys should not rely on code being in place. I'd consider this stupid advice. It's easy to screw up the referential integrity of a database, and developers make plenty of mistakes. In the same way as a c# developer appreciates type safety, anyone developing for databases will appreciate the safeguarding of referential integrity.</p> <p>However, in the case of bulk inserts etc, it might be quicker to switch off FK constraints, but only after thorough testing with them enabled.</p> http://stackoverflow.com/questions/879763/should-a-development-environment-disable-foreign-keys/879785#879785 6 Answer by Jason Heine for Should a development environment disable foreign keys? Jason Heine 2009-05-18T20:52:59Z 2009-05-18T20:52:59Z <p>Hi, I always keep FK's enabled in my environment. The reason for this is if I code around not having FK's something could break later with them turned on. </p> <p>Even though it may cause a little bit more headache to have them turned on, it is worth it in the long run in my opinion.</p> http://stackoverflow.com/questions/879763/should-a-development-environment-disable-foreign-keys/879786#879786 4 Answer by cletus for Should a development environment disable foreign keys? cletus 2009-05-18T20:53:00Z 2009-05-18T20:53:00Z <p>You keep them enabled. If they're enabled in your test and production environments they should be in your development environment as well or you're simply pushing potential problems to another environment, which will actually make things take longer to fix.</p> http://stackoverflow.com/questions/879763/should-a-development-environment-disable-foreign-keys/879795#879795 1 Answer by simon622 for Should a development environment disable foreign keys? simon622 2009-05-18T20:55:11Z 2009-05-18T20:55:11Z <p>I ~always have FK enabled, I understand the premise of the argument that application logic should enforce the data contraints and not rely on the DB contraints themselves, this aside, but i dont think i'd be the first person who has missed a cascading constraint before in my application logic, and the database has picked this up for me, I imagine this is very common, and having this picked up in a dev cycle, is much more pallettable than in a producution env!</p> http://stackoverflow.com/questions/879763/should-a-development-environment-disable-foreign-keys/879796#879796 4 Answer by Jeff Hall for Should a development environment disable foreign keys? Jeff Hall 2009-05-18T20:55:12Z 2009-05-18T20:55:12Z <p>In my opinion, having Foreign keys in a development environment <strong>will not be a roadblock, but will be a benefit</strong>. Data integrity is a good thing and foreign keys are a great way to enforce it.</p> http://stackoverflow.com/questions/879763/should-a-development-environment-disable-foreign-keys/879804#879804 1 Answer by alphazero for Should a development environment disable foreign keys? alphazero 2009-05-18T20:56:58Z 2009-05-18T20:56:58Z <p>That's like saying "running tests that fail" presents difficulties for the development team. The whole point of constraints is insuring the validity and correctness of your system. </p> <p>Take the time to develop the required support infrastructure for your development process to facilitate adding and modifying the database.</p> http://stackoverflow.com/questions/879763/should-a-development-environment-disable-foreign-keys/879849#879849 1 Answer by Andomar for Should a development environment disable foreign keys? Andomar 2009-05-18T21:09:31Z 2009-05-18T21:09:31Z <p>In addition to the many reasons in the other posts, disabling foreign keys in development has a big risk that you write code that won't run in production. For example, say you create an orderline before you create an order. That will run fine without foreign keys, but fail when they are enabled.</p> http://stackoverflow.com/questions/879763/should-a-development-environment-disable-foreign-keys/879876#879876 1 Answer by Bill Karwin for Should a development environment disable foreign keys? Bill Karwin 2009-05-18T21:14:33Z 2009-05-18T21:25:33Z <p>I'm heartened to see the other answers are nearly unanimous that you should keep constraints enabled in your development.</p> <p>I would add that your code needs to handle exceptions when an attempted data <code>INSERT</code>/<code>UPDATE</code>/<code>DELETE</code> causes a constraint violation. You need your code to work correctly when (not if) this occurs in production. So you <em>must</em> enable constraints during development and testing.</p> http://stackoverflow.com/questions/879763/should-a-development-environment-disable-foreign-keys/882546#882546 0 Answer by Raj More for Should a development environment disable foreign keys? Raj More 2009-05-19T12:47:46Z 2009-05-19T12:47:46Z <p>I'm going to say, let's remove the constraints. </p> <p>Down with FKs!</p> <p>and remove all the indices, all other constraints as well.</p> <p>Just kidding. :)</p> <p>Of course.. keep it as close to production as possible - scale down the size of the data and please please please SCRUB the data before you distribute it.</p>