How to replicate a shared MSSQL 2005 db for development purposes? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T08:49:52Zhttp://stackoverflow.com/feeds/question/354232http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/354232/how-to-replicate-a-shared-mssql-2005-db-for-development-purposes0How to replicate a shared MSSQL 2005 db for development purposes?Joannes Vermorel2008-12-09T21:05:15Z2008-12-09T21:42:07Z
<p>I would like to replicate a MSSQL 2005 db (hosting through a shared hosting provider) directly on an integration server for development purposes. MSSQL server provides quite a few ways of performing data replication, but I am not sure that any of them is compatible with a typical shared hosting environment.</p>
<p>The idea would be to update the database once a day or so, much better if it can be done incrementally. Any idea how to proceed?</p>
http://stackoverflow.com/questions/354232/how-to-replicate-a-shared-mssql-2005-db-for-development-purposes/354273#3542730Answer by IrishChieftain for How to replicate a shared MSSQL 2005 db for development purposes?IrishChieftain2008-12-09T21:18:44Z2008-12-09T21:18:44Z<p>Try the SQL Server Publishing Wizard 1.2, which is included with VS 2008. Or download the 1.1 version here:</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=56E5B1C5-BF17-42E0-A410-371A838E570A&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?familyid=56E5B1C5-BF17-42E0-A410-371A838E570A&displaylang=en</a></p>
http://stackoverflow.com/questions/354232/how-to-replicate-a-shared-mssql-2005-db-for-development-purposes/354298#3542982Answer by Liwen for How to replicate a shared MSSQL 2005 db for development purposes?Liwen2008-12-09T21:31:39Z2008-12-09T21:31:39Z<p>There are couple of ways of doing it.</p>
<ol>
<li><p>Use SQL Server 2005 copy function, but it would fail if SQL Agent is not ruining or there is any permission restriction - mostly like to happen with shared hosting.</p></li>
<li><p>Use SQL Server backup/restore: the problem is usually you don't have access to the Database server file system with shared hosting.</p></li>
<li><p>Replicate database schema on development server, then do a DTS to transfer data, you can save the DTS package ( even manually edit it if needed ) and set up a scheduled task in the development machine, it would automatically synchronize the database everyday, it may not be incrementally, depends on your database design/schema.</p></li>
</ol>
<p>option 3 seems to require more work but actually it is easy to set up and would save you a lot time in a long run.</p>
<p>any other suggestions I would like to hear too.</p>
http://stackoverflow.com/questions/354232/how-to-replicate-a-shared-mssql-2005-db-for-development-purposes/354332#3543321Answer by jerryhung for How to replicate a shared MSSQL 2005 db for development purposes?jerryhung2008-12-09T21:42:07Z2008-12-09T21:42:07Z<p>It really depends on how the hosting environment is setup</p>
<p>I used to have jobs to
HOST: backup SQL DB's on SQL Server, copy over to Web/FTP Server
Internal: FTP download the backup file, restore on a SQL Server</p>
<p>That wasn't fun, but once it's setup it works most of the time</p>
<p>If the remote SQL Server is easily accessible, you can setup SQL Replication, using Snapshot Replication (essentially schedule backup-and-restore) daily</p>
<p>I have right now a DB replicated from server DB to my computer's own SQL Server using Snapshot Replication (I did it via the wizard)</p>