Best practice for managing data-model changes in a released system - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T01:02:05Zhttp://stackoverflow.com/feeds/question/400540http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/400540/best-practice-for-managing-data-model-changes-in-a-released-system5Best practice for managing data-model changes in a released systemBen Aston2008-12-30T15:23:48Z2009-09-30T19:35:02Z
<p>I am about to embark on the development of a web application project.</p>
<p>I'd like to get something up early and often for early adopters to play with and feedback.</p>
<p>But I envisage the data model changing as the project progresses and my understanding of the system improves. </p>
<p>How should I manage the dilemma of updating the data model appropriately and preventing data loss for early adopters? Should I simply put up a big warning saying "user beware", or should I put in the effort to create migration scripts?</p>
http://stackoverflow.com/questions/400540/best-practice-for-managing-data-model-changes-in-a-released-system/400556#4005562Answer by duffymo for Best practice for managing data-model changes in a released systemduffymo2008-12-30T15:29:27Z2008-12-30T15:29:27Z<p>Scott Ambler has written some nice stuff about agile databases. There's a <a href="http://rads.stackoverflow.com/amzn/click/0321293533" rel="nofollow">book</a> and a <a href="http://www.agiledata.org/" rel="nofollow">website</a>.</p>
http://stackoverflow.com/questions/400540/best-practice-for-managing-data-model-changes-in-a-released-system/400559#4005591Answer by duffymo for Best practice for managing data-model changes in a released systemduffymo2008-12-30T15:30:50Z2008-12-30T15:30:50Z<p>The first time I ever heard about agile data was a talk by <a href="http://martinfowler.com/articles/evodb.html" rel="nofollow">Martin Fowler and Pramod Sadalage</a>.</p>
http://stackoverflow.com/questions/400540/best-practice-for-managing-data-model-changes-in-a-released-system/400561#4005614Answer by bradheintz for Best practice for managing data-model changes in a released systembradheintz2008-12-30T15:31:06Z2008-12-30T15:31:06Z<p>What platform are you using? Ruby on Rails gives you migration scripts as part of the package. If you're in Java-land, you might want to check out <a href="http://migrate4j.sourceforge.net/" rel="nofollow" title="migrate4j">migrate4j</a>.</p>
<p>In the end, I'd suggest doing both things: Warn your users that they're using alpha software, and employ migration scripts with the intent of preserving their data whenever you can (lest they become peeved and lose interest).</p>
http://stackoverflow.com/questions/400540/best-practice-for-managing-data-model-changes-in-a-released-system/402920#4029200Answer by Ben Aston for Best practice for managing data-model changes in a released systemBen Aston2008-12-31T12:48:00Z2008-12-31T12:48:00Z<p>@bradheintz; I'm using the Microsoft Web Stack. </p>
<p>I have found a short list of .NET related migration tools here: </p>
<p><a href="http://flux88.com/blog/net-database-migration-tool-roundup/" rel="nofollow">http://flux88.com/blog/net-database-migration-tool-roundup/</a>.</p>
http://stackoverflow.com/questions/400540/best-practice-for-managing-data-model-changes-in-a-released-system/402937#4029372Answer by mattruma for Best practice for managing data-model changes in a released systemmattruma2008-12-31T13:07:36Z2008-12-31T15:01:45Z<p><strong>For my company ...</strong> </p>
<p>It's a hard and fast rule that, when possible, the database <strong>MUST be backwards compatible</strong> with the current version of the software. If it's not resort to tar and feathering tactics against the offender.</p>
<p>In our case, we write custom software application for our customers, so we have some flexibility on how we can implement things ... but more often or not, <strong>the customer wants to view their changes with live data</strong>. So we have to be able to support the current version of the application, plus the new version of the application that customer is reviewing and approves.</p>
<p>Some other things we do is invested in <strong>Red Gate's Sql Compare and Sql Data Compare</strong>. This make sure changes from the development environment get moved into the production environment correctly.</p>
<p>We also have recently <strong>abandoned the use of stored procedures</strong>, as they provide an unnescessary layer of abstraction when it comes to maintenance ... and they are evil! =)</p>