Reputation: 29365
Is it feasible to start using a Migration framework such as RikMigrations or Tarantino on an existing large legacy database? The schema is still being tweaked all the time, so I was hoping to use migrations to manage these tweaks.
The database is SQL Server 2008 and has 600 tables 300 views and 2000 storedprocs? I'm just a bit concerned that the initial migration to get where we are now, would be impractical/slow/error prone?
Upvotes: 2
Views: 205
Reputation: 3145
Why not version control your database and keep track of changes that way? Red Gate has some brilliant products for managing changes to databases:
Our team has been much more productive and database changes done with confidence by using these tools. I wrote a couple of posts about it here: http://davidduffett.net/post/4663483715/database-continuous-integration-and-deployment-with-red
Upvotes: 1