Add to a Deployment script
bomberbri
Posts: 4
I'm trying to add something to a migration script. I know I can edit it manually but what I thought I might be able to do is where you can right click an object in commit changes tab and choose Add new migration script I thought there would be an option to add to existing migration script? If not how do people manage scripts for projects. We have a situation where developers are working on BAU work and a project. WE would like to be able to keep the project scripts together so at a later date they can be deployed as a package in a migration script or similar. How can I achieve this?
Cheers Brian
Comments
The current migration script feature is certainly useful, but sometimes we need to script updates/inserts/deletes that don't necessarily correspond to changes in the database structure.
An example, inspired by a recent case:
We needed to update a number of records in our Clients table and the easiest way was to write an sql script.
However, we didn't need to change the structure of the Clients table, we only needed to update some data. Thus, the migration script feature in SQL Source Control wouldn't let us add this script as a migration script.
/Mattias
@swinghouse we are currently working on a set of improvements to the migration script functionality in SQL Source Control. One of the features of this new functionality is that it will support adding migration scripts not involving structural changes, like your example.
Project Manager
SQL Source Control
/Mattias
Sr. DBA \ Consultant
snapjag.com
It sounds like you're both using MigrationsV1: http://www.red-gate.com/supportcenter/c ... Migrations
There is a new beta version of Migrations that the team is currently working on. See here: http://documentation.red-gate.com/display/MV2
I'd encourage you to try the beta version out as we've improved a lot of functionality in the beta and made it such that it can be better integrated with your CI system. Also, you should be able to handle your data migration use case by just adding an update sql as a migration script. SQL Compare will then run that update script before applying all other changes. The documentation site explains more about how the new feature works.
Let me know if you have any other question :- )
Cheers,
Ruchika