Advice needed: warm backup solution for SQL Server 2008 Express?

Posted by Mikey Cee on Server Fault See other posts from Server Fault or by Mikey Cee
Published on 2010-06-08T02:05:59Z Indexed on 2010/06/08 2:12 UTC
Read the original article Hit count: 430

What are my options for achieving a warm backup server for a SQL Server Express instance running a single database?

Sitting beside my production SQL Server 2008 Express box I have a second physical box currently doing nothing. I want to use this second box as a warm backup server by somehow replicating my production database in near real time (a little bit of data loss is acceptable). The database is very small and resources are utilized very lightly.

In the case that the production server dies, I would manually reconfigure my application to point to the backup server instead.

Although Express doesn't support log shipping natively, I am thinking that I could manually script a poor man's version of it, where I use batch files to take the logs and copy them across the network and apply them to the second server at 5 minute intervals.

Does anyone have any advice on whether this is technically achievable, or if there is a better way to do what I am trying to do?

Note that I want to avoid having to pay for the full version of SQL Server and configure mirroring as I think it is an overkill for this application. I understand that other DB platforms may present suitable options (eg. a MySQL Cluster), but for the purposes of this discussion, let's assume we have to stick to SQL Server.

© Server Fault or respective owner

Related posts about sql-server

Related posts about sql-server-2008