Simple SQL Server 2005 Replication - "D-1" server used for heavy queries/reports

Posted by Ricardo Pardini on Server Fault See other posts from Server Fault or by Ricardo Pardini
Published on 2010-03-26T23:44:29Z Indexed on 2010/03/26 23:53 UTC
Read the original article Hit count: 461

Hello. We have two SQL 2005 machines. One is used for production data, and the other is used for running queries/reports. Every night, the production machine dumps (backups) it's database to disk, and the other one restores it. This is called the D-1 process.

I think there must be a more efficient way of doing this, since SQL 2005 has many forms of replication. Some requirements:

1) No need for instant replication, there can be (some) delay

2) All changes (including schemas, data, constraints, indexes) need to be replicated without manual intervention

3) It is used for a single database only

4) There is a third server available if needed

5) There is high bandwidth (gigabit ethernet) available between the servers

6) There isn't a shared storage (SAN) available

What would be a good alternative to this daily backup/restore routine? Thanks!

© Server Fault or respective owner

Related posts about sql-server

Related posts about sql-server-2005