keeping sql database schemas synced between developers - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T10:36:55Zhttp://stackoverflow.com/feeds/question/916804http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/916804/keeping-sql-database-schemas-synced-between-developers2keeping sql database schemas synced between developersNeale2009-05-27T16:45:22Z2009-06-04T05:40:48Z
<p>We are a small development team (about 5) doing a dev project from different locations.
We use SVN as out code repo.<br />
The biggest issue that we are having now is that our DB schema is totally out of sync between all of us.
I have though of the following options:
1. Work off a "central" DB. This is a bad idea and will most likely not happen
2. Have a "gatekeeper" developer that will keep on version of the DB and have each developer keep them up to date with the changes.
3. Make each developer check their changes into a DB change script. This can get messy really quickly.</p>
<p>Sorry just to mention that it is a .net c# project</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/916804/keeping-sql-database-schemas-synced-between-developers/916830#9168300Answer by Scott Ivey for keeping sql database schemas synced between developersScott Ivey2009-05-27T16:48:53Z2009-05-27T16:48:53Z<p>Have you considered using the Visual Studio Team Database Edition? It lets you put your whole source database into source control, and each developer can work on their own changes, and then once they check them in, the other dev's can easily deploy those changes to their own working copy.</p>
<p>Not sure if there's an SVN plugin that would work with the MSSCCI provider - but I imagine that there should be something out there for that.</p>
http://stackoverflow.com/questions/916804/keeping-sql-database-schemas-synced-between-developers/916849#9168490Answer by Chris Lively for keeping sql database schemas synced between developersChris Lively2009-05-27T16:52:14Z2009-05-27T19:03:16Z<p>Assuming you aren't using the Team Edition visual studio products, then I'd pick option 3. Have the sql script under source control as well.</p>
<p>Keeping their local databases in sync is no different than requiring them to work with the latest source code.</p>
<p>If you are using the Team products, then start using the Database edition (comes with Developer Edition) to manage your database under source control</p>
http://stackoverflow.com/questions/916804/keeping-sql-database-schemas-synced-between-developers/916860#9168601Answer by Kieveli for keeping sql database schemas synced between developersKieveli2009-05-27T16:54:06Z2009-05-27T16:54:06Z<p>This is a difficult problem. We dealt with it by revisioning the sql used to generate the schema (auto-generated from Enterprise Architect). We had huge problems where people would not update their database schemas because they felt it took too long to re-create a dataset that had valid testing data.</p>
<p>Our solution was to:</p>
<ul>
<li>Add SQL Schema Generation to SVN</li>
<li>Add Data Insertion Scripts to SVN</li>
<li>Add Schema/Data dumps to SVN</li>
</ul>
<p>We used Hudson to setup an automated database build that would check for changes in the revision. It would automatically re-create the schema, insert all the data, export a dump file, and then commit the dump file to SVN.</p>
<p>Basically, it boiled down to running a database import which took about 20 seconds. Once you make the database creation fast, then developers won't have a problem doing it frequently.</p>
http://stackoverflow.com/questions/916804/keeping-sql-database-schemas-synced-between-developers/916889#9168890Answer by JohnRegner for keeping sql database schemas synced between developersJohnRegner2009-05-27T16:59:16Z2009-05-27T16:59:16Z<p>I work on a small team as well, and right now we have our SQL schema and data insertion scripts checked into a repository just like our code.</p>
<p>You'll need to make sure people are keeping up to date with the latest "source". We tend to make it practice that for any major changes/revisions that we meet up and discuss them anyway, to keep everyone informed as to what's being modified as well as offer a chance to review any database updates before they are put out.</p>
http://stackoverflow.com/questions/916804/keeping-sql-database-schemas-synced-between-developers/916908#9169080Answer by Trey for keeping sql database schemas synced between developersTrey2009-05-27T17:01:50Z2009-05-27T17:01:50Z<p>This problem doesn't get any more common. Every team has to ask this question at some point. I've done the common DB approach and the separate DB approach. The team has always gone back to the common DB. It's just easier to maintain and everyone should be syncing early, syncing often. This does not negate the need to keep schema changes and definitions in version control though. You need a repeatable process to updating your test, staging and production environments. Pure SQL migrations are not always sufficient though, there will be times where you need to use your native objects to generate the data or make decisions. The best system I've seen (resembles systems I've built myself in perl, php and Java, but improves on a couple of points) is the Ruby on Rails migration system. Check it out and do something similar.</p>
http://stackoverflow.com/questions/916804/keeping-sql-database-schemas-synced-between-developers/917402#9174021Answer by Gromer for keeping sql database schemas synced between developersGromer2009-05-27T18:53:30Z2009-05-27T18:53:30Z<p>Why would working off the same database server be a bad idea again? Because all the developers are making changes that could hurt others? If that's the case, I'd have one person deal with schema changes and use VPN to get in to the network that has the database server. I'm in this same boat right now, just picked up a Cisco router to deal with my VPN needs for cheap (< $100).</p>
http://stackoverflow.com/questions/916804/keeping-sql-database-schemas-synced-between-developers/947205#9472050Answer by Craig Lewis for keeping sql database schemas synced between developersCraig Lewis2009-06-03T20:57:42Z2009-06-03T20:57:42Z<p>I read an artile a few years back from Paul Graham, about "Agile Database Development". I'm having trouble googling it though. It seems all of those terms are a bit too generic, and my memory is a bit too fuzzy to get closer.</p>
<p>I did run acrossed <a href="http://code.google.com/p/migratordotnet/" rel="nofollow">http://code.google.com/p/migratordotnet/</a></p>
<p>It's modelled on the Rails ActiveRecord migrator (mentioned earlier), but aimed at .net. I'm not a .net programmer, but it sounds like the sort of thing you're looking for.</p>
http://stackoverflow.com/questions/916804/keeping-sql-database-schemas-synced-between-developers/948711#9487110Answer by Itamar for keeping sql database schemas synced between developersItamar2009-06-04T05:18:40Z2009-06-04T05:18:40Z<p>There's a third party tool, just for that - Randolph (<a href="http://www.nobhillsoft.com/Randolph.aspx?HeardVia=Itamar" rel="nofollow">SQL Version control</a>)</p>
http://stackoverflow.com/questions/916804/keeping-sql-database-schemas-synced-between-developers/948742#9487421Answer by Karl for keeping sql database schemas synced between developersKarl2009-06-04T05:40:48Z2009-06-04T05:40:48Z<p>We had the same problem in the project I'm currently working in. We've adopted <a href="http://code.google.com/p/tarantino/wiki/DatabaseChangeManagement" rel="nofollow">Tarantino</a> as a solution which works surprisingly well. Each developer is working against a local database. When a developer needs to make a schema change, he/she creates a script and checks it in.</p>
<p>Tarantino keeps track of which scripts each developer has already run on their local database and applies the new scripts. So if developer A makes a change and checks in the SQL script, developer B will get the change when he/she gets the lates files from source control. When developer B runs Tarantino locally only the latest scripts will be applied.</p>
<p>Granted, most of this can be done manually. Tarantino makes it easier but it is not perfect. One advantage is that it can be integrated into the build process fairly easily. Scripts for maintaining the data in the databases can also be created.</p>