How to switch between databases - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T04:13:09Z http://stackoverflow.com/feeds/question/465173 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/465173/how-to-switch-between-databases 2 How to switch between databases Mathias Fritsch 2009-01-21T12:52:59Z 2009-01-21T14:28:33Z <p>Our application uses a large product database that is updated once a day. Updates require a lot of time and resources. Thats why we update a backup of the product database and switch to it once the updates finished.</p> <p>The only way to switch between databases right now is to misuse our loadbalancer. The application always uses the same ip to access the database server. The loadbalancer decides how this IP is resolved: After updates it uses the ip of the updated server.</p> <p>This is a terrible hack. Is there any good way to switch between databases?</p> http://stackoverflow.com/questions/465173/how-to-switch-between-databases/465192#465192 0 Answer by Josh for How to switch between databases Josh 2009-01-21T12:58:14Z 2009-01-21T12:58:14Z <p>Some different options:</p> <p>1)Modify the database your application connects to. Switch back and forth between the two.</p> <p>2)Do your processing and updates into a staging DB, then replicate just the changes over to your live DB.</p> http://stackoverflow.com/questions/465173/how-to-switch-between-databases/465512#465512 3 Answer by Brent Ozar for How to switch between databases Brent Ozar 2009-01-21T14:28:33Z 2009-01-21T14:28:33Z <p>It sounds like you're only reading from the database. If that's the case, check out SQL Server 2005's snapshot capabilities. You can have a read-only snapshot of a database, and query it just like a regular database.</p> <p>Instead of pointing at your live database, point to a fixed snapshot name, like ReadOnlyCopy. Do your normal loads in the live database, and when the loads are done, drop the snapshot and take another one. The snapshot process is quite fast.</p> <p>This has some other advantages, too:</p> <ul> <li>It avoids the cost/latency issues of the load balancer.</li> <li>If your loads go horribly wrong, you can use the snapshot to insert/update records in the live database</li> <li>It requires much less disk space since you don't need twice the space for the two full copies</li> <li>It frees up your backup/restore schedule so you can do it at the right time for the app instead of the right time for the daily loads</li> </ul> <p>Here's a good article from Simple Talk explaining the concepts of 2005's snapshots:</p> <p><a href="http://www.simple-talk.com/sql/database-administration/sql-server-2005-snapshots/" rel="nofollow">http://www.simple-talk.com/sql/database-administration/sql-server-2005-snapshots/</a></p>