开发者

SQL Server Database Changes to Customer

开发者 https://www.devze.com 2023-02-15 03:13 出处:网络
I\'ve seen a lot of software that does something similar to what we need but I wanted to get specific to make sure I\'m not barking up the wrong tree.

I've seen a lot of software that does something similar to what we need but I wanted to get specific to make sure I'm not barking up the wrong tree.

We have a C#/WPF/Silverlight application in beta form that has updates weekly for testing and debugging by remote users. I have created a simple routine that updates the customer with out a problem.

We are at the point where we are having to make database changes regularly to add new features. We are using the database project and creates a deployment script.

I tried writing a program that implements this script and failed miserably.

How do we mi开发者_开发知识库grate the database changes from our dev db to our customer's db with our updates without having to jump through a bunch of hoops?

I hope this makes since, desperately need a good solution that requires little input from the customer since they will be clueless how it works. Right now, they click one button and it updates.


Here at Red Gate we've got a tool called SQL Packager, which takes a script and turns it into an exe that the customer can run. Is this something that might work for you?


We use a database diff tool called SQL Effects Clarity to show the differences in Stored Proces/Tables, etc.

Then we just go through the differences and make the changes to the structure, and then import the data changes.

Doing the update manually will save you time in the long run because you will find small differences all over the database that need to be updated. You'll end up finding bugs before you release it, and you'll be glad you did.

0

精彩评论

暂无评论...
验证码 换一张
取 消