Testing and Managing database versions against code versions - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T18:40:36Z http://stackoverflow.com/feeds/question/33638 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/33638/testing-and-managing-database-versions-against-code-versions 6 Testing and Managing database versions against code versions Craig 2008-08-28T23:30:16Z 2009-09-04T06:36:28Z <p>As you develop an application database changes inevitably pop up. The trick I find is keeping your database build in step with your code. In the past I have added a build step that executed SQL scripts against the target database but that is dangerous in so much as you could inadvertanly add bogus data or worse. </p> <p>My question is what are the tips and tricks to keep the database in step with the code? What about when you roll back the code? Branching?</p> http://stackoverflow.com/questions/33638/testing-and-managing-database-versions-against-code-versions/33644#33644 -2 Answer by IainMH for Testing and Managing database versions against code versions IainMH 2008-08-28T23:32:50Z 2008-08-28T23:32:50Z <p>You should be able to create your database from scratch into a known state. Why would you be adding bogus data?</p> http://stackoverflow.com/questions/33638/testing-and-managing-database-versions-against-code-versions/33656#33656 3 Answer by Josh for Testing and Managing database versions against code versions Josh 2008-08-28T23:38:10Z 2008-08-28T23:46:10Z <p>Version numbers embedded in the database are helpful. You have two choices, embedding values into a table (allows versioning multiple items) that can be queried, or having an explictly named object (such as a table or somesuch) you can test for.</p> <p>When you release to production, do you have a rollback plan in the event of unexpected catastrophe? If you do, is it the application of a schema rollback script? Use your rollback script to rollback the database to a previous code version.</p> http://stackoverflow.com/questions/33638/testing-and-managing-database-versions-against-code-versions/33666#33666 1 Answer by Craig Walker for Testing and Managing database versions against code versions Craig Walker 2008-08-28T23:45:32Z 2008-08-28T23:45:32Z <blockquote> <p>You should be able to create your database from scratch into a known state.</p> </blockquote> <p>While being able to do so is helpful (especially in the early stages of a new project), many (most?) databases will quickly become far too large for that to be possible. Also, if you have any BLOBs then you're going to have problems generating SQL scripts for your entire database. </p> <p>I've definitely been interested in some sort of DB versioning system, but I haven't found anything yet. So, instead of a solution, you'll get my vote. :-P</p> http://stackoverflow.com/questions/33638/testing-and-managing-database-versions-against-code-versions/33693#33693 0 Answer by mk for Testing and Managing database versions against code versions mk 2008-08-29T00:15:26Z 2008-08-29T00:15:26Z <p>I like the way that Django does it. You build models and the when you run a syncdb it applies the models that you have created. If you add a model you just need to run syncdb again. This would be easy to have your build script do every time you made a push. </p> <p>The problem comes when you need to alter a table that is already made. I do not think that syncdb handles that. That would require you to go in and manually add the table and also add a property to the model. You would probably want to version that alter statement. The models would always be under version control though, so if you needed to you could get a db schema up and running on a new box without running the sql scripts. Another problem with this is keeping track of static data that you always want in the db.</p> <p>Rails migration scripts are pretty nice too. </p> <p>A DB versioning system would be great, but I don't really know of such a thing. </p> http://stackoverflow.com/questions/33638/testing-and-managing-database-versions-against-code-versions/34200#34200 0 Answer by IainMH for Testing and Managing database versions against code versions IainMH 2008-08-29T08:51:02Z 2008-08-29T08:51:02Z <blockquote> <p>While being able to do so is helpful (especially in the early stages of a new project), many (most?) databases will quickly become far too large for that to be possible. Also, if you have any BLOBs then you're going to have problems generating SQL scripts for your entire database. </p> </blockquote> <p>Backups and compression can help you there. Sorry - there's no excuse not to be able to get a a good set of data to develop against. Even if it's just a sub-set.</p> http://stackoverflow.com/questions/33638/testing-and-managing-database-versions-against-code-versions/60849#60849 1 Answer by Jay Bazuzi for Testing and Managing database versions against code versions Jay Bazuzi 2008-09-13T20:38:25Z 2008-09-13T20:38:25Z <p>You really do want to be able to take a clean machine, get the latest version from source control, build in one step, and run all tests in one step. Making this fast makes you produce good software faster.</p> <p>Just like <a href="http://beta.stackoverflow.com/questions/49196/storing-third-party-libraries-in-source-control" rel="nofollow">external libraries</a>, database configuration must also be in source control.</p> <p>Note that I'm not saying that all your live database <em>content</em> should be in the same source control, just enough to get to a clean state. (Do back up your database content, though!)</p> http://stackoverflow.com/questions/33638/testing-and-managing-database-versions-against-code-versions/1377577#1377577 0 Answer by Andrew Swan for Testing and Managing database versions against code versions Andrew Swan 2009-09-04T06:36:28Z 2009-09-04T06:36:28Z <p>Define your schema objects and your reference data in version-controlled text files. For example, you can define the schema in <a href="http://db.apache.org/torque/" rel="nofollow">Torque</a> format, and the data in <a href="http://dbunit.sourceforge.net/" rel="nofollow">DBUnit</a> format (both use XML). You can then use tools (we wrote our own) to generate the DDL and DML that take you from one version of your app to another. Our tool can take as input either (a) the previous version's schema &amp; data XML files or (b) an existing database, so you are always able to get a database of any state into the correct state.</p>