vote up 3 vote down star
2

I've got a rather large SQL Server 2005 database that is under constant development. Every so often, I either get a new developer or need to deploy wide-scale schema changes to the production server.

My main concern is deploying schema + data updates to developer machines from the "master" development copy.

Is there some built-in functionality or tools for publishing schema + data in such a fashion? I'd like it to take as little time as possible. Can it be done from within SSMS?

Thanks in advance for your time

flag

This is a duplicate of stackoverflow.com/questions/1085677/… and maybe another dozen just like it. Please at least do one quick search before starting a new question. – John Saunders Jul 6 at 7:25
Oh wow this question concerns my exact situation and problem right now! – Maxim Z. Jul 6 at 7:54
Question 1085677 is not a duplicate: it doesn't specify a db, it doesn't ask HOW to sync – devio Jul 6 at 16:56
Thanks to everybody who provided input here. Doing full backups isn't really what I'm after I guess... see: "rather large" in my issue description. However, I do like the ideas regarding Redgate's tools... and I believe the Microsoft SQL Server Database Publishing Wizard 1.1 is also a promising lead. Thanks again for your time. – hamlin11 Jul 7 at 23:34

5 Answers

vote up 4 vote down check

I suggest using RedGate's tools (this is not advertisment, but real life experience with them) that can deploy schema changes and/or data:

  • SQL Compare for schema changes
  • SQL Data Compare for data changes

I used these tools in the past (others as well) and they really helped with development staging process. These tools aren't free but their price is more than acceptable for any development team.

Check RedGate web site

link|flag
I also use Redgate, as do a lot of people I know that use SQL Server. A few people I know use DB Ghost- innovartis.co.uk. – RichardOD Jul 6 at 7:44
vote up 2 vote down

I'll add my vote for Red Gates tools - they're not expensive & they are useful - we have several complex databases & using a tool like SQL Compare is the only way I'd feel confident about getting the update scripts right. Before we had any tools it was pretty scary sometimes

link|flag
vote up 1 vote down

You can schedule jobs for back up and restore using SSMS. In my view, this is the simplest solution. The frequency of this job will depend on how dynamic is your schema/data.

http://msdn.microsoft.com/en-us/library/ms177429.aspx

link|flag
I up-voted this because it's a good idea for many medium to simple situations. However, I was hunting for a more elegant solution that can patch-up small differences between source and destinations. Thanks – hamlin11 Jul 7 at 23:35
vote up 1 vote down

You could always just detach the database copy it then re-atach the db. This strategy only works if its not an issue for the "master" to be unavailable for a few minutes while the copy is carried out.

This is obviously only a snapshot of the db at that moment in time, and if you're looking for a more dynamic solution you may want to look into replication.

link|flag
vote up 1 vote down

You could just backup and restore using the standard SQL Server functions.
That's what we do. We run a daily backup on the production server at 9 pm anyway.

Then at 11 pm, we run a SQL Server Agent job on the test server which restores the last backup from the production server ("RESTORE DATABASE ...").

The only con is: you have to get used to the fact that all changes you make in the test database are away the next morning :-)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.