Is Sql Server Migration Assistant dead?

What are the best practices to update the database schema in a SaaS environment?

  • Sometimes in a Scrum sprint, one discovers that it is necessary to add database tables or columns. This could, of course, cause potential problems in production. In a Software-as-a-Service environment the problem can be even bigger. Apparently you are only supposed to have one version of the software. It's a pretty long story, but it all boils down to Preferably  we would like to have automated migration, but the people responsible  for the production environment, would like to review the migration SQL  before releasing the changes. Also the QA department prefers to update  the acceptance test server manually themselves. So we can generate the  migration SQL and even send it automatically. Another  issue is that there are no automated tests for the migration, since we are  using special in memory databases and mocks for the unit tests and  integration tests.

  • Answer:

    I believe you answer your own question - lack of automated testing. When you are rolling out changes in any production environment (SaaS or not), you will have scenarios where there is a point of no return - changes that cannot be rolled back. Lets go over the methodology first:  Since you have a SaaS model, typically you will not have more than three releases in the pipeline (N, N+1 and N+2 code base). For each release, you will typically have a perf-test platform, a system/integration test platform and other unit testing platforms (sometimes these may just be developer laptops). In the SaaS world, you could look at integrating your development tasks with operations - DevOps. So you would have a process that daily (or weekly) check out the code from svn / repository, compiles it, builds the app, deploys the required virtual machines, deploy the app on the VM's, starts up the app, runs the tests, logs the results in the bugzilla / bug-tracker, optionally takes a snapshot of the VM's and destroys the VMs.. You gotta have very strict code control policy (In one of the shops I worked, beyond a point in the dev cycle, only 1 person in the team was allowed to check-in the code. The code could only be checked in if it compiled)... Now on to the app design: You may want to think working around the "point of no return" problems. This is where you would need someone who can look across the code base / app architecture and find issues (though there may not be that many, especially since you now have the ability to drop table columns without having to recreate indexes or constraints)..

Manav Gupta at Quora Visit the source

Was this solution helpful to you?

Other answers

Use a tool designed for managing migrations: The best general purpose tool is http://www.liquibase.org/ More Ruby / Rails specific is http://api.rubyonrails.org/classes/ActiveRecord/Migration.html These tools offer several advantages over hand-rolled / hand-applied SQL: Testability.  The migrations are applied equally to QA, staging, and production environments. Automated.  The migrations can be applied when the service is started, by the service itself.  Alternatively they can be manually invoked. Versioned.  The tools know which migrations need to be applied to a given database instance, there is no manual checking the database and deciding what is missing. Rollbacks.  Made a mistake?  The tools support rollback very easily. If the DBAs want to review, they can do so. Using a schema-less data store like Mongo does not solve the problem.  The data is still structured, and often that structure needs to be adjusted to suit new functionality.  The difference is that the structure is not formalized to same degree as a traditional SQL DB, but do not mistake for a lack of any structure.

Robert Schultheis

The acceptance server should best be updated automatically - via a script at least. After that => run it through automated tests.If you trust that solution good enough => you can use it for production.Before you have automated migration - make sure that you have automated tests on the acceptance environment.Automation tends limit the chances of manual errors.Please note: You should not always need to have only 1 version of software running in production - you can run a newer version and only guide some of your customers to it. (See: http://martinfowler.com/bliki/CanaryRelease.html)In short: 1. Introduce automated testing on the acceptance server - at first it should not be necessary to automatically trigger this, but still 1 jenkins/CI job for example.2. Script the release of new software to the acceptance environment - so that OPS really just has to execute a single command to do the entire release.3. When you have that - you can have your development be built and deployed on the acceptance server automatically + tests executed.4. You could go for production - great step would also be a script which would: run some tests on the acceptance environment - carry out the release on production - carry out some verification tests.5. Automating that last step would be easy, but how that has to be carried out depends on the applications / users / environment. Some services can be released on the fly, while for others some downtime is needed.Also: look into monitoring - if you start to automate stuff you want to be notified as soon as possible if stuff goes wrong. Automation can reduce the chance of manual errors - but fuck-ups can still happen and cause mayhem.

Tom Van den Bulck

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.