SQL Server 2005 - Syncing development/production databases - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T23:39:56Z http://stackoverflow.com/feeds/question/1085783 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1085783/sql-server-2005-syncing-development-production-databases 3 SQL Server 2005 - Syncing development/production databases hamlin11 2009-07-06T07:19:07Z 2009-07-07T14:53:52Z <p>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.</p> <p>My main concern is deploying schema + data updates to developer machines from the "master" development copy.</p> <p>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?</p> <p>Thanks in advance for your time</p> http://stackoverflow.com/questions/1085783/sql-server-2005-syncing-development-production-databases/1085797#1085797 1 Answer by SQL Baba for SQL Server 2005 - Syncing development/production databases SQL Baba 2009-07-06T07:23:55Z 2009-07-06T07:23:55Z <p>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.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms177429.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms177429.aspx</a></p> http://stackoverflow.com/questions/1085783/sql-server-2005-syncing-development-production-databases/1085798#1085798 1 Answer by Mark for SQL Server 2005 - Syncing development/production databases Mark 2009-07-06T07:24:46Z 2009-07-06T07:24:46Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/1085783/sql-server-2005-syncing-development-production-databases/1085828#1085828 4 Answer by Robert Koritnik for SQL Server 2005 - Syncing development/production databases Robert Koritnik 2009-07-06T07:34:49Z 2009-07-06T07:49:42Z <p>I suggest using RedGate's tools (this is not advertisment, but real life experience with them) that can deploy schema changes and/or data:</p> <ul> <li>SQL Compare for schema changes</li> <li>SQL Data Compare for data changes</li> </ul> <p>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.</p> <p>Check <a href="http://www.redgate.com" rel="nofollow">RedGate web site</a></p> http://stackoverflow.com/questions/1085783/sql-server-2005-syncing-development-production-databases/1085846#1085846 1 Answer by haarrrgh for SQL Server 2005 - Syncing development/production databases haarrrgh 2009-07-06T07:46:15Z 2009-07-06T07:46:15Z <p>You could just backup and restore using the standard SQL Server functions.<br /> That's what we do. We run a daily backup on the production server at 9 pm anyway.</p> <p>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 ...").</p> <p>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 :-)</p> http://stackoverflow.com/questions/1085783/sql-server-2005-syncing-development-production-databases/1092811#1092811 2 Answer by andywebsdale for SQL Server 2005 - Syncing development/production databases andywebsdale 2009-07-07T14:53:52Z 2009-07-07T14:53:52Z <p>I'll add my vote for Red Gates tools - they're not expensive &amp; they are useful - we have several complex databases &amp; 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</p>